[fuzzbench] Get crash detection working (#9730)

[fuzzbench] Get crash detection working
This commit is contained in:
jonathanmetzman 2023-02-16 14:22:24 -05:00 committed by GitHub
parent 67171ebea0
commit f2a5b9aa39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -1398,7 +1398,7 @@ def fuzzbench_run_fuzzer(args):
'FUZZING_ENGINE=' + args.engine, 'SANITIZER=' + args.sanitizer,
'RUN_FUZZER_MODE=interactive', 'HELPER=True',
f'FUZZ_TARGET={args.fuzzer_name}', f'BENCHMARK={args.project.name}',
'TRIAL_ID=1'
'TRIAL_ID=1', 'EXPERIMENT_TYPE=bug',
]
if args.e:
@ -1457,6 +1457,7 @@ def fuzzbench_measure(args):
'-v', f'{args.project.out}:/out', '-v',
f'{fuzzbench_path}:{fuzzbench_path}', '-e',
f'FUZZBENCH_PATH={fuzzbench_path}', '-e',
'EXPERIMENT_TYPE=bug', '-e',
f'FUZZ_TARGET={args.fuzz_target_name}', '-e',
f'FUZZER={args.engine_name}', '-e', f'BENCHMARK={args.project.name}',
f'gcr.io/oss-fuzz/{args.project.name}', 'fuzzbench_measure'

View File

@ -1 +1 @@
Hello, World!
Hello, Wor