[compiler-rt] e4cc071 - Disable a dataflow fuzz test after "Have REQUIRES support the target triple"
Paul Robinson via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 6 09:14:48 PDT 2021
Author: Paul Robinson
Date: 2021-08-06T09:14:39-07:00
New Revision: e4cc071e9220333d47d5f9b399080e5ab21051f5
URL: https://github.com/llvm/llvm-project/commit/e4cc071e9220333d47d5f9b399080e5ab21051f5
DIFF: https://github.com/llvm/llvm-project/commit/e4cc071e9220333d47d5f9b399080e5ab21051f5.diff
LOG: Disable a dataflow fuzz test after "Have REQUIRES support the target triple"
See: https://lab.llvm.org/buildbot/#/builders/75/builds/8095/steps/8/logs/stdio
which shows:
unsupported option '-fsanitize=dataflow' for target 'i386-unknown-linux-gnu'
The other dataflow tests in the same directory were already disabled,
so I think it's fine to disable this one as well.
Added:
Modified:
compiler-rt/test/fuzzer/dataflow.test
Removed:
################################################################################
diff --git a/compiler-rt/test/fuzzer/dataflow.test b/compiler-rt/test/fuzzer/dataflow.test
index 99184103e7399..c7d703dbe82f2 100644
--- a/compiler-rt/test/fuzzer/dataflow.test
+++ b/compiler-rt/test/fuzzer/dataflow.test
@@ -1,6 +1,10 @@
# Tests the data flow tracer.
REQUIRES: linux, x86_64
+# Disable, like other dataflow tests.
+RUN: false
+XFAIL: *
+
# Build the tracer and the test.
RUN: %no_fuzzer_cpp_compiler -c -fno-sanitize=all -fsanitize=dataflow %S/../../lib/fuzzer/dataflow/DataFlow.cpp -o %t-DataFlow.o
RUN: %no_fuzzer_cpp_compiler -c -fno-sanitize=all -fPIC %S/../../lib/fuzzer/dataflow/DataFlowCallbacks.cpp -o %t-DataFlowCallbacks.o
More information about the llvm-commits
mailing list