-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
538b59a
commit 236e681
Showing
11 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[buildenv] | ||
CFLAGS +=-fsanitize=address | ||
CXXFLAGS+=-fsanitize=address | ||
ASAN_OPTIONS=detect_leaks=1:allocator_may_return_null=1:detect_stack_use_after_return=1:detect_stack_use_after_scope=1:check_initialization_order=true:strict_init_order=true | ||
LSAN_OPTIONS=suppressions={{os.path.join(profile_dir, "lsan.suppressions")}} | ||
ASAN_OPTIONS=suppressions={{os.path.join(profile_dir, "asan.suppressions")}}:detect_leaks=1:allocator_may_return_null=1:detect_stack_use_after_return=1:detect_stack_use_after_scope=1:check_initialization_order=true:strict_init_order=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# AddressSanitizer suppressions, see: | ||
# - https://clang.llvm.org/docs/AddressSanitizer.html#suppressing-reports-in-external-libraries | ||
|
||
interceptor_via_fun:-[ClassName Asan_DoubleFree_Test::TestBody:] | ||
interceptor_via_fun:-[ClassName Asan_DoubleFree_Test:] | ||
interceptor_via_fun:*MAdviseAllocator* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# LeakSanitizer suppressions, see: | ||
# - https://clang.llvm.org/docs/AddressSanitizer.html#suppressing-memory-leaks | ||
|
||
leak:Asan_LeakedAllocation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[buildenv] | ||
CFLAGS +=-fsanitize=thread | ||
CXXFLAGS+=-fsanitize=thread | ||
TSAN_OPTIONS=allocator_may_return_null=1 | ||
TSAN_OPTIONS=suppressions={{os.path.join(profile_dir, "tsan.suppressions")}}:allocator_may_return_null=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# ThreadSanitizer suppressions, see: | ||
# - https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions | ||
|
||
race:Tsan_DataRace_Test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[buildenv] | ||
CFLAGS +=-fsanitize=undefined | ||
CXXFLAGS+=-fsanitize=undefined | ||
UBSAN_OPTIONS=symbolize=1:halt_on_error=0:print_stacktrace=1 | ||
UBSAN_OPTIONS=suppressions={{os.path.join(profile_dir, "usan.suppressions")}}:symbolize=1:halt_on_error=0:print_stacktrace=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# UndefinedBehaviorSanitizer suppressions, see: | ||
# - https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html#runtime-suppressions | ||
|
||
# ZeroMQ | ||
alignment:yqueue.hpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters