[compiler-rt] 0a3519d - [LSan] Mark create_thread_leak.cpp as UNSUPPORTED: darwin.
Artem Dergachev via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 31 16:41:43 PDT 2023
Author: Artem Dergachev
Date: 2023-08-31T16:41:35-07:00
New Revision: 0a3519d5a27b9400250b5f6656b50148021e7496
URL: https://github.com/llvm/llvm-project/commit/0a3519d5a27b9400250b5f6656b50148021e7496
DIFF: https://github.com/llvm/llvm-project/commit/0a3519d5a27b9400250b5f6656b50148021e7496.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.
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 92e70b2e37c3dd..564d4b66384e8a 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-commits
mailing list