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.
This commit is contained in:
Paul Robinson 2021-08-06 09:14:27 -07:00
parent 825a08f898
commit e4cc071e92
1 changed files with 4 additions and 0 deletions

View File

@ -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