diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-07-22 08:31:18 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-07-22 08:26:34 +0200 |
commit | faa8c1be265d2344a3bc0932455b0182ec7d64c7 (patch) | |
tree | 304b55521c02c41d024fcce7f09bdcd617a02f6d | |
parent | d23fda05842ba4539b225bbab01b94df0060f697 (diff) |
fuzz: Re-enable symbolize=1 in ASAN_OPTIONS
-rwxr-xr-x | test/fuzz/test_runner.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py index 1ce7c71360..c9975af225 100755 --- a/test/fuzz/test_runner.py +++ b/test/fuzz/test_runner.py @@ -20,8 +20,7 @@ def get_fuzz_env(*, target, source_dir): 'FUZZ': target, 'UBSAN_OPTIONS': f'suppressions={source_dir}/test/sanitizer_suppressions/ubsan:print_stacktrace=1:halt_on_error=1:report_error_type=1', - 'ASAN_OPTIONS': # symbolizer disabled due to https://github.com/google/sanitizers/issues/1364#issuecomment-761072085 - 'symbolize=0:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1', + "ASAN_OPTIONS": "detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1", } |