1RUN: %cpp_compiler %S/NullDerefTest.cpp -o %t-NullDerefTest
2RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
3
4RUN: not %run %t-NullDerefTest %S/hi.txt 2>&1 | FileCheck %s --check-prefix=SingleInput
5SingleInput-NOT: Test unit written to ./crash-
6
7RUN: rm -rf  %tmp/SINGLE_INPUTS
8RUN: mkdir -p  %tmp/SINGLE_INPUTS
9RUN: echo aaa > %tmp/SINGLE_INPUTS/aaa
10RUN: echo bbb > %tmp/SINGLE_INPUTS/bbb
11RUN: %run %t-SimpleTest            %tmp/SINGLE_INPUTS/aaa %tmp/SINGLE_INPUTS/bbb 2>&1 | FileCheck %s --check-prefix=SINGLE_INPUTS
12RUN: %run %t-SimpleTest -max_len=2 %tmp/SINGLE_INPUTS/aaa %tmp/SINGLE_INPUTS/bbb 2>&1 | FileCheck %s --check-prefix=SINGLE_INPUTS
13RUN: rm -rf  %tmp/SINGLE_INPUTS
14SINGLE_INPUTS: SimpleTest{{.*}}: Running 2 inputs 1 time(s) each.
15SINGLE_INPUTS: aaa in
16SINGLE_INPUTS: bbb in
17SINGLE_INPUTS: NOTE: fuzzing was not performed, you have only
18SINGLE_INPUTS: executed the target code on a fixed set of inputs.
19
20