aboutsummaryrefslogtreecommitdiff
path: root/compiler-rt
diff options
context:
space:
mode:
authorArtem Dergachev <adergachev@apple.com>2023-08-31 16:36:38 -0700
committerTobias Hieta <tobias@hieta.se>2023-10-17 08:17:30 +0200
commit268faa377aeef30fd06622c85e40fcb9d549c28a (patch)
tree3839de0e5770b4ae5966045c79c4a61874dcbe4a /compiler-rt
parent491a91e8eea27fab4d8123cbfbb01bf1cf251b9c (diff)
downloadllvm-268faa377aeef30fd06622c85e40fcb9d549c28a.zip
llvm-268faa377aeef30fd06622c85e40fcb9d549c28a.tar.gz
llvm-268faa377aeef30fd06622c85e40fcb9d549c28a.tar.bz2
[LSan] Mark create_thread_leak.cpp as UNSUPPORTED: darwin.
It started to fail in a flaky manner a few days ago on GreenDragon buildbots (i.e. x86_64-darwin). I didn't track down the root cause but LSan isn't actually supported on darwin anyway, so UNSUPPORTED seems appropriate. Prior art: 3ff080b5. (cherry picked from commit 0a3519d5a27b9400250b5f6656b50148021e7496)
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/test/lsan/TestCases/create_thread_leak.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/lsan/TestCases/create_thread_leak.cpp b/compiler-rt/test/lsan/TestCases/create_thread_leak.cpp
index 92e70b2..564d4b6 100644
--- a/compiler-rt/test/lsan/TestCases/create_thread_leak.cpp
+++ b/compiler-rt/test/lsan/TestCases/create_thread_leak.cpp
@@ -6,6 +6,9 @@
// RUN: %run not %t 10 0 0 1 2>&1 | FileCheck %s --check-prefixes=LEAK,LEAK234
// RUN: %run %t 10 0 0 0
+// This test appears to be flaky on x86_64-darwin buildbots.
+// UNSUPPORTED: darwin
+
#include <pthread.h>
#include <stdlib.h>