[compiler-rt] [RTSan][Darwin] Adjust OSSpinLock/_os_nospin_lock interceptor and tests (PR #132867)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 16 18:41:28 PDT 2025
================
@@ -139,13 +139,13 @@ TEST(TestRtsanInterceptors, VallocDiesWhenRealtime) {
#define ALIGNED_ALLOC_AVAILABLE() (true)
#endif
-TEST(TestRtsanInterceptors, AlignedAllocDiesWhenRealtime) {
- if (ALIGNED_ALLOC_AVAILABLE()) {
- auto Func = []() { EXPECT_NE(nullptr, aligned_alloc(16, 32)); };
- ExpectRealtimeDeath(Func, "aligned_alloc");
- ExpectNonRealtimeSurvival(Func);
- }
-}
+// TEST(TestRtsanInterceptors, AlignedAllocDiesWhenRealtime) {
----------------
thetruestblue wrote:
This was an accident cause I had issues with this locally.
https://github.com/llvm/llvm-project/pull/132867
More information about the llvm-commits
mailing list