[compiler-rt] 9289b64 - sanitizer-common: fix buildbot by temporarily disabling release_to_os test for tsan
Thurston Dang via llvm-commits
llvm-commits at lists.llvm.org
Wed May 24 21:10:39 PDT 2023
Author: Thurston Dang
Date: 2023-05-25T04:09:35Z
New Revision: 9289b64bc48f13638cff7e470afce738af56b795
URL: https://github.com/llvm/llvm-project/commit/9289b64bc48f13638cff7e470afce738af56b795
DIFF: https://github.com/llvm/llvm-project/commit/9289b64bc48f13638cff7e470afce738af56b795.diff
LOG: sanitizer-common: fix buildbot by temporarily disabling release_to_os test for tsan
This has been causing substantial redness in the buildbots e.g.,
https://lab.llvm.org/buildbot/#/builders/239/builds/2405
which already contained a commit to deflake the test
(https://github.com/llvm/llvm-project/commit/3afd1b2c357fb5353084a736d885af60115d6acb).
Temporarily disabling the test to prevent this error from
hiding other potential problems.
Added:
Modified:
compiler-rt/test/sanitizer_common/TestCases/Linux/release_to_os_test.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/release_to_os_test.cpp b/compiler-rt/test/sanitizer_common/TestCases/Linux/release_to_os_test.cpp
index 4c177ee00c67..0a14d75c089b 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Linux/release_to_os_test.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/release_to_os_test.cpp
@@ -1,6 +1,9 @@
// RUN: %clangxx %s -o %t
// RUN: env %tool_options=allocator_release_to_os_interval_ms=-1 %run %t
+// Temporarily disable test
+// UNSUPPORTED: tsan
+
// Not needed, no allocator.
// UNSUPPORTED: ubsan
More information about the llvm-commits
mailing list