[compiler-rt] 16a2aa3 - [test][tsan] Disable flaky test on PPC
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 11 13:19:48 PDT 2023
Author: Vitaly Buka
Date: 2023-09-11T13:19:35-07:00
New Revision: 16a2aa32679ee849cd6fd4278ef58f71434084ec
URL: https://github.com/llvm/llvm-project/commit/16a2aa32679ee849cd6fd4278ef58f71434084ec
DIFF: https://github.com/llvm/llvm-project/commit/16a2aa32679ee849cd6fd4278ef58f71434084ec.diff
LOG: [test][tsan] Disable flaky test on PPC
COMPILER_RT_DEBUG was just added to sanitizer-ppc64le-linux, and this
test is already broken there.
Added:
Modified:
compiler-rt/test/tsan/signal_thread2.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/tsan/signal_thread2.cpp b/compiler-rt/test/tsan/signal_thread2.cpp
index a773058b2cf956d..9bde4f70b39d816 100644
--- a/compiler-rt/test/tsan/signal_thread2.cpp
+++ b/compiler-rt/test/tsan/signal_thread2.cpp
@@ -1,6 +1,9 @@
// RUN: %clangxx_tsan %s -o %t && %run %t 2>&1 | FileCheck %s
// UNSUPPORTED: darwin
+// It's very flaky on PPC with COMPILER_RT_DEBUG.
+// UNSUPPORTED: !compiler-rt-optimized && ppc
+
// Test case for https://github.com/google/sanitizers/issues/1540
#include <errno.h>
More information about the llvm-commits
mailing list