forked from OSchip/llvm-project
[libFuzzer] simplify tests, remove one redundant test; NFC
llvm-svn: 332037
This commit is contained in:
parent
d80e821646
commit
5d95f2782d
|
@ -1,4 +1,4 @@
|
|||
RUN: %no_fuzzer_cpp_compiler -fno-sanitize-coverage=edge,trace-cmp,indirect-calls,8bit-counters,trace-pc-guard %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
|
||||
RUN: %no_fuzzer_cpp_compiler %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
|
||||
|
||||
; Test that not specifying an extra stats file isn't broken.
|
||||
RUN: unset AFL_DRIVER_EXTRA_STATS_FILENAME
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
UNSUPPORTED: freebsd
|
||||
RUN: %no_fuzzer_cpp_compiler -fno-sanitize-coverage=edge,trace-cmp,indirect-calls,8bit-counters,trace-pc-guard %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
|
||||
RUN: %no_fuzzer_cpp_compiler %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
|
||||
|
||||
; Test that not specifying a stderr file isn't broken.
|
||||
RUN: unset AFL_DRIVER_STDERR_DUPLICATE_FILENAME
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
REQUIRES: linux
|
||||
|
||||
RUN: %no_fuzzer_cpp_compiler -fno-sanitize-coverage=edge,trace-cmp,indirect-calls,8bit-counters,trace-pc-guard %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
|
||||
RUN: %no_fuzzer_cpp_compiler %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
|
||||
|
||||
RUN: echo -n "abc" > %t.file3
|
||||
RUN: echo -n "abcd" > %t.file4
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
RUN: %cpp_compiler %S/SimpleTest.cpp -fno-sanitize-coverage=trace-pc-guard -fsanitize-coverage=inline-8bit-counters -o %t-SimpleTest-Inline8bitCounters
|
||||
CHECK: INFO: Loaded 1 modules ({{.*}} inline 8-bit counters)
|
||||
CHECK: BINGO
|
||||
RUN: not %t-SimpleTest-Inline8bitCounters -runs=1000000 -seed=1 2>&1 | FileCheck %s
|
|
@ -1,3 +1,3 @@
|
|||
RUN: %cpp_compiler %S/SimpleTest.cpp -fno-sanitize-coverage=edge,trace-cmp,indirect-calls,8bit-counters,trace-pc-guard -fsanitize-coverage=trace-pc -o %t-SimpleTest-TracePC
|
||||
RUN: %cpp_compiler %S/SimpleTest.cpp -fsanitize-coverage=0 -fsanitize-coverage=trace-pc -o %t-SimpleTest-TracePC
|
||||
CHECK: BINGO
|
||||
RUN: not %t-SimpleTest-TracePC -runs=1000000 -seed=1 2>&1 | FileCheck %s
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
CHECK: AddressSanitizer: global-buffer-overflow
|
||||
RUN: %cpp_compiler %S/LoadTest.cpp -fsanitize-coverage=trace-pc-guard,indirect-calls,trace-gep,trace-div,trace-cmp -o %t-LoadTest
|
||||
RUN: %cpp_compiler %S/LoadTest.cpp -fsanitize-coverage=trace-gep -o %t-LoadTest
|
||||
RUN: not %t-LoadTest -seed=2 -use_cmp=0 -use_value_profile=1 -runs=20000000 2>&1 | FileCheck %s
|
||||
|
|
Loading…
Reference in New Issue