[llvm-branch-commits] [compiler-rt] 268faa3 - [LSan] Mark create_thread_leak.cpp as UNSUPPORTED: darwin.
Tobias Hieta via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Oct 16 23:21:56 PDT 2023
Author: Artem Dergachev
Date: 2023-10-17T08:17:30+02:00
New Revision: 268faa377aeef30fd06622c85e40fcb9d549c28a
URL: https://github.com/llvm/llvm-project/commit/268faa377aeef30fd06622c85e40fcb9d549c28a
DIFF: https://github.com/llvm/llvm-project/commit/268faa377aeef30fd06622c85e40fcb9d549c28a.diff
LOG: [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)
Added:
Modified:
compiler-rt/test/lsan/TestCases/create_thread_leak.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/lsan/TestCases/create_thread_leak.cpp b/compiler-rt/test/lsan/TestCases/create_thread_leak.cpp
index 92e70b2e37c3dd4..564d4b66384e8aa 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>
More information about the llvm-branch-commits
mailing list