19 lines · plain
1# Tests the data flow tracer.2REQUIRES: linux, x86_643 4# Disabling due to dfs$ prefix to .dfsan suffix change in DFSan.5# TODO(kcc): re-enable.6RUN: false7XFAIL: *8 9# Build the tracer and the test.10DISABLED: %no_fuzzer_cpp_compiler -c -fno-sanitize=all -fsanitize=dataflow %S/../../lib/fuzzer/dataflow/DataFlow.cpp -o %t-DataFlow.o11DISABLED: %no_fuzzer_cpp_compiler -c -fno-sanitize=all -fPIC %S/../../lib/fuzzer/dataflow/DataFlowCallbacks.cpp -o %t-DataFlowCallbacks.o12DISABLED: %no_fuzzer_cpp_compiler -fno-sanitize=all -fsanitize=dataflow -fsanitize-coverage=trace-pc-guard,pc-table,bb,trace-cmp %S/OnlySomeBytesTest.cpp %t-DataFlow*.o -o %t-DFT13DISABLED: %cpp_compiler %S/OnlySomeBytesTest.cpp -o %t-Fuzz14 15# Test that the fork mode can collect and use the DFT16DISABLED: rm -rf %t && mkdir %t17DISABLED: not %t-Fuzz -collect_data_flow=%t-DFT -use_value_profile=1 -runs=100000000 -fork=20 2> %t/log18DISABLED: grep BINGO %t/log19