[compiler-rt] a5ee433 - [sanitizer] Disable pc guard coverage test on PPC64/s390x
Ben Shi via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 25 05:09:38 PST 2022
Author: Xiaodong Liu
Date: 2022-02-25T21:09:22+08:00
New Revision: a5ee4335c7e7c8a25661591e581162800a1bbe22
URL: https://github.com/llvm/llvm-project/commit/a5ee4335c7e7c8a25661591e581162800a1bbe22
DIFF: https://github.com/llvm/llvm-project/commit/a5ee4335c7e7c8a25661591e581162800a1bbe22.diff
LOG: [sanitizer] Disable pc guard coverage test on PPC64/s390x
Reviewed By: benshi001, uweigand
Differential Revision: https://reviews.llvm.org/D120541
Added:
Modified:
compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard-dso.cpp
compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard-dso.cpp b/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard-dso.cpp
index a7381fa67cea2..180504ae7ea04 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard-dso.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard-dso.cpp
@@ -1,7 +1,7 @@
// Tests trace pc guard coverage collection.
// REQUIRES: has_sancovcc
-// UNSUPPORTED: ubsan
+// UNSUPPORTED: ubsan,powerpc64,s390x
// XFAIL: tsan,darwin
// XFAIL: android && asan
diff --git a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard.cpp b/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard.cpp
index eb052fed8d462..094a279d35a30 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard.cpp
@@ -1,7 +1,7 @@
// Tests trace pc guard coverage collection.
// REQUIRES: has_sancovcc
-// UNSUPPORTED: ubsan,i386-darwin
+// UNSUPPORTED: ubsan,i386-darwin,powerpc64,s390x
// XFAIL: tsan
// XFAIL: android && asan
More information about the llvm-commits
mailing list