[compiler-rt] 97fd8d2 - [test][sanitizer] Disable create_thread_loop on Darwin
Steven Wu via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 8 09:28:16 PDT 2023
Author: Steven Wu
Date: 2023-08-08T09:27:57-07:00
New Revision: 97fd8d264af5a9e95279e50dac936f515dce7d42
URL: https://github.com/llvm/llvm-project/commit/97fd8d264af5a9e95279e50dac936f515dce7d42
DIFF: https://github.com/llvm/llvm-project/commit/97fd8d264af5a9e95279e50dac936f515dce7d42.diff
LOG: [test][sanitizer] Disable create_thread_loop on Darwin
create_thread_loop can time out sometimes on macOS CI.
Differential Revision: https://reviews.llvm.org/D157291
Added:
Modified:
compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp b/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp
index 6b7ee913cc9927..11c982835191d5 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp
@@ -2,8 +2,8 @@
// RUN: %clangxx -O3 -pthread %s -o %t && %run %t 1000
-// Inconsistently fails on Android.
-// UNSUPPORTED: android
+// Inconsistently fails on Android and can timeout on darwin platforms.
+// UNSUPPORTED: android, darwin
#include <pthread.h>
#include <stdlib.h>
More information about the llvm-commits
mailing list