Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / afl-driver-close-fd-mask.test
blob71f74e27ec4fe6c0c23e6eaf9391d41f637f8fa1
1 REQUIRES: linux
2 RUN: %no_fuzzer_cpp_compiler %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
4 ; Test that not specifying AFL_DRIVER_CLOSE_FD_MASK works as intended.
5 RUN: echo -n "abc" > %t.file3
6 RUN: unset AFL_DRIVER_CLOSE_FD_MASK
7 RUN: %run %t-AFLDriverTest < %t.file3 2>&1 | FileCheck %s --check-prefixes=STDERR,STDOUT
8 STDOUT: STDOUT MESSAGE
9 STDERR: STDERR MESSAGE
11 ; Test that stdout is closed properly.
12 RUN: AFL_DRIVER_CLOSE_FD_MASK=1 %run %t-AFLDriverTest < %t.file3 2>&1 | FileCheck %s --check-prefixes=NOT_STDOUT,STDERR
13 NOT_STDOUT-NOT: STDOUT MESSAGE
15 ; Test that stderr is closed properly.
16 RUN: AFL_DRIVER_CLOSE_FD_MASK=2 %run %t-AFLDriverTest < %t.file3 2>&1 | FileCheck %s --check-prefixes=NOT_STDERR,STDOUT
17 NOT_STDERR-NOT: STDERR MESSAGE
19 ; Test that both are closed properly.
20 RUN: AFL_DRIVER_CLOSE_FD_MASK=3 %run %t-AFLDriverTest < %t.file3 2>&1 | FileCheck %s --check-prefixes=NOT_STDERR,NOT_STDOUT
22 ; Test that a stack is printed when we close stderr
23 RUN: echo -n "abcd" > %t.file4
24 RUN: AFL_DRIVER_CLOSE_FD_MASK=2 not %run %t-AFLDriverTest < %t.file4 2>&1  | FileCheck %s --check-prefixes=ASAN_CRASH,STDOUT,NOT_STDERR
25 ASAN_CRASH: ERROR: AddressSanitizer
27 ; Test that a stack is written to the stderr duplicate file when we close stderr
28 ; and specify a duplicate.
29 RUN: rm -f %t.stderr
30 RUN: AFL_DRIVER_STDERR_DUPLICATE_FILENAME=%t.stderr AFL_DRIVER_CLOSE_FD_MASK=2 not %run %t-AFLDriverTest < %t.file4
31 RUN: cat %t.stderr | FileCheck %s --check-prefixes=ASAN_CRASH,NOT_STDERR