aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-07-25 10:46:26 +0100
committerfanquake <fanquake@gmail.com>2023-07-25 10:47:06 +0100
commite35fb7bc48d360585b80d0c7f89ac5087c1d405e (patch)
tree7b07f5f0649e00e41218e7ef36999d1bfe4203b8
parentc97270d722569933f2e8972675ac3cca8589febc (diff)
parentfaa8c1be265d2344a3bc0932455b0182ec7d64c7 (diff)
downloadbitcoin-e35fb7bc48d360585b80d0c7f89ac5087c1d405e.tar.xz
Merge bitcoin/bitcoin#28124: fuzz: Re-enable symbolize=1 in ASAN_OPTIONS
faa8c1be265d2344a3bc0932455b0182ec7d64c7 fuzz: Re-enable symbolize=1 in ASAN_OPTIONS (MarcoFalke) Pull request description: Looks like this fixed itself somehow and is no longer reproducible? ACKs for top commit: fanquake: ACK faa8c1be265d2344a3bc0932455b0182ec7d64c7 Tree-SHA512: 67d2d6349cc7485f32bebabc18869ab101ae66a778a40ff9ddb037980997e600d7c6d1e0a17a011fa2a4ba07c73594b087dd781248cb8351f2688bc4cf6e587d
-rwxr-xr-xtest/fuzz/test_runner.py3
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",
}