Skip to content

Commit f409de3

Browse files
committed
try fix
1 parent df350a6 commit f409de3

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/sanitizers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
export ASAN_SAVE_DUMPS=AsanDump.dmp
7979
;;
8080
memory)
81-
export MSAN_OPTIONS=log_path=msan_log_:halt_on_error=0
81+
export MSAN_OPTIONS=log_path=msan_log_:halt_on_error=0:suppressions=${GITHUB_WORKSPACE}/test/msan_suppressions.txt
8282
;;
8383
leak)
8484
export LSAN_OPTIONS=log_path=lsan_log_:halt_on_error=0

test/msan_suppressions.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# MSan false positive: doctest reporter registration during static init
2+
# doctest::String has internal padding that MSan flags as uninitialized
3+
# when std::map compares keys during insert.
4+
interceptor_via_fun:doctest::detail::registerReporterImpl

0 commit comments

Comments
 (0)