mirror of https://github.com/google/oss-fuzz.git
[cifuzz] Don't use jobs with MSAN. (#11922)
It causes false positives. Related: https://github.com/google/oss-fuzz/issues/11915
This commit is contained in:
parent
9dce1daeb4
commit
0091ba33c9
|
@ -190,7 +190,12 @@ class FuzzTarget: # pylint: disable=too-many-instance-attributes
|
||||||
options.arguments.extend(LIBFUZZER_OPTIONS_NO_REPORT_OOM)
|
options.arguments.extend(LIBFUZZER_OPTIONS_NO_REPORT_OOM)
|
||||||
|
|
||||||
if self.config.parallel_fuzzing:
|
if self.config.parallel_fuzzing:
|
||||||
options.arguments.extend(get_libfuzzer_parallel_options())
|
if self.config.sanitizer == 'memory':
|
||||||
|
# TODO(https://github.com/google/oss-fuzz/issues/11915): Don't gate
|
||||||
|
# this after jobs is fixed for MSAN.
|
||||||
|
logging.info('Not using jobs because it breaks MSAN.')
|
||||||
|
else:
|
||||||
|
options.arguments.extend(get_libfuzzer_parallel_options())
|
||||||
|
|
||||||
result = engine_impl.fuzz(self.target_path, options, artifacts_dir,
|
result = engine_impl.fuzz(self.target_path, options, artifacts_dir,
|
||||||
self.duration)
|
self.duration)
|
||||||
|
|
Loading…
Reference in New Issue