Skip to content

Commit cb9abe5

Browse files
committed
[RTSan][Apple] Disable AccessingALargeAtomicVariableDiesWhenRealtime on Apple devices
Disabling this test since it failing Apple CI jobs: https://green.lab.llvm.org/job/llvm.org/job/clang-stage1-RA/3694/testReport/RealtimeSanitizer-Unit/__Rtsan-x86_64h-Test_TestRtsan/AccessingALargeAtomicVariableDiesWhenRealtime/ rdar://145488759
1 parent c363975 commit cb9abe5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

compiler-rt/lib/rtsan/tests/rtsan_test_functional.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ TEST(TestRtsan, CopyingALambdaWithLargeCaptureDiesWhenRealtime) {
171171
}
172172

173173
TEST(TestRtsan, AccessingALargeAtomicVariableDiesWhenRealtime) {
174+
#ifdef __APPLE__
175+
GTEST_SKIP(); // Test is failing on Apple Devices.
176+
#endif
174177
std::atomic<float> small_atomic{0.0f};
175178
ASSERT_TRUE(small_atomic.is_lock_free());
176179
RealtimeInvoke([&small_atomic]() {

0 commit comments

Comments
 (0)