We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df350a6 commit f409de3Copy full SHA for f409de3
2 files changed
.github/workflows/sanitizers.yml
@@ -78,7 +78,7 @@ jobs:
78
export ASAN_SAVE_DUMPS=AsanDump.dmp
79
;;
80
memory)
81
- export MSAN_OPTIONS=log_path=msan_log_:halt_on_error=0
+ export MSAN_OPTIONS=log_path=msan_log_:halt_on_error=0:suppressions=${GITHUB_WORKSPACE}/test/msan_suppressions.txt
82
83
leak)
84
export LSAN_OPTIONS=log_path=lsan_log_:halt_on_error=0
test/msan_suppressions.txt
@@ -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