[compiler-rt] b517d67 - Mark new TSan test as unsupported on PPC.
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Fri May 20 13:07:35 PDT 2022
Author: Mitch Phillips
Date: 2022-05-20T13:06:44-07:00
New Revision: b517d679dd69a30ed84e9782a2e902cf4284ebc7
URL: https://github.com/llvm/llvm-project/commit/b517d679dd69a30ed84e9782a2e902cf4284ebc7
DIFF: https://github.com/llvm/llvm-project/commit/b517d679dd69a30ed84e9782a2e902cf4284ebc7.diff
LOG: Mark new TSan test as unsupported on PPC.
Notably fails under PPC. For now, just exclude it. More details in the
original Phabricator review, https://reviews.llvm.org/D110552.
Added:
Modified:
compiler-rt/test/tsan/lock_free_stack.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/tsan/lock_free_stack.cpp b/compiler-rt/test/tsan/lock_free_stack.cpp
index 5477adcfdf976..3ae6ced95b800 100755
--- a/compiler-rt/test/tsan/lock_free_stack.cpp
+++ b/compiler-rt/test/tsan/lock_free_stack.cpp
@@ -1,5 +1,11 @@
// RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
// RUN: %clangxx_tsan -O1 %s -DRACE -o %t && %deflake %run %t | FileCheck %s --check-prefix=CHECK-RACE
+
+// Found in the post-submit testing under PPC (documented in
+// https://reviews.llvm.org/D110552), this test fails under PowerPC. Should be
+// investigated at some point.
+// UNSUPPORTED: ppc
+
#include "test.h"
const int kThreadCount = 4;
More information about the llvm-commits
mailing list