We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fb427c commit 02dc376Copy full SHA for 02dc376
2 files changed
.github/workflows/cmake_ubuntu_sanitizers.yml
@@ -63,7 +63,7 @@ jobs:
63
GTEST_COLOR: "On"
64
ASAN_OPTIONS: "color=always"
65
UBSAN_OPTIONS: "halt_on_error=1:print_stacktrace=1:color=always"
66
- TSAN_OPTIONS: "color=always"
+ TSAN_OPTIONS: "suppressions=${GITHUB_WORKSPACE}/BehaviorTree.CPP/tests/tsan_suppressions.txt:color=always"
67
# There is a known issue with TSAN on recent kernel versions. Without the vm.mmap_rnd_bits=28
68
# workaround all binaries with TSan enabled crash with "FATAL: ThreadSanitizer: unexpected memory mapping"
69
run: sudo sysctl vm.mmap_rnd_bits=28 && ctest --test-dir build/${{env.BUILD_TYPE}} --output-on-failure
tests/tsan_suppressions.txt
@@ -0,0 +1,4 @@
1
+# ThreadSanitizer suppressions file for behaviortree_cpp_test
2
+
3
+# ZeroMQ false positives
4
+race:zmq::epoll_t::add_fd
0 commit comments