[compiler-rt] 24c5926 - [TSan][Test-Only] Mark write-interpose.c unsupported on ios (#163178)

via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 14 05:14:31 PDT 2025


Author: Dan Blackwell
Date: 2025-10-14T13:14:28+01:00
New Revision: 24c5926bd69a0dc0abc6d63f63a38b1e6f6d6ae6

URL: https://github.com/llvm/llvm-project/commit/24c5926bd69a0dc0abc6d63f63a38b1e6f6d6ae6
DIFF: https://github.com/llvm/llvm-project/commit/24c5926bd69a0dc0abc6d63f63a38b1e6f6d6ae6.diff

LOG: [TSan][Test-Only] Mark write-interpose.c unsupported on ios (#163178)

This test is currently failing on ios-sim. This patch follows other
sanitizer tests that use DYLD_INSERT_LIBRARIES and marks itself
unsupported on ios platforms.

rdar://162287951

Added: 
    

Modified: 
    compiler-rt/test/tsan/Darwin/write-interpose.c

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/tsan/Darwin/write-interpose.c b/compiler-rt/test/tsan/Darwin/write-interpose.c
index cbd9a0867c982..51ff3ee3d0df9 100644
--- a/compiler-rt/test/tsan/Darwin/write-interpose.c
+++ b/compiler-rt/test/tsan/Darwin/write-interpose.c
@@ -7,6 +7,8 @@
 // Note that running the below command with out `lock_during_write` should
 // deadlock (self-lock)
 // RUN: env DYLD_INSERT_LIBRARIES=%t.dylib TSAN_OPTIONS=verbosity=2:lock_during_write=disable_for_current_process %run %t 2>&1 | FileCheck %s
+//
+// UNSUPPORTED: ios
 
 #include <stdio.h>
 


        


More information about the llvm-commits mailing list