MCPcopy
hub / github.com/google/clusterfuzz / get_lsan_options

Function get_lsan_options

src/clusterfuzz/_internal/system/environment.py:456–469  ·  view source on GitHub ↗

Generates default LSAN options.

()

Source from the content-addressed store, hash-verified

454
455
456def get_lsan_options():
457 """Generates default LSAN options."""
458 lsan_suppressions_path = get_suppressions_file('lsan')
459 lsan_options = {
460 'print_suppressions': 0,
461 }
462
463 # Add common sanitizer options.
464 lsan_options.update(COMMON_SANITIZER_OPTIONS)
465
466 if lsan_suppressions_path:
467 lsan_options['suppressions'] = lsan_suppressions_path
468
469 return lsan_options
470
471
472def get_kasan_options():

Callers 1

get_asan_optionsFunction · 0.85

Calls 2

get_suppressions_fileFunction · 0.85
updateMethod · 0.45

Tested by

no test coverage detected