Aaron Ballman | ef11698 | 2015-01-29 16:58:29 +0000 | [diff] [blame] | 1 | RUN: ./LLVMFuzzer-SimpleTest 2>&1 | FileCheck %s --check-prefix=SimpleTest |
| 2 | SimpleTest: Found the target, exiting |
| 3 | |
| 4 | RUN: not ./LLVMFuzzer-InfiniteTest -timeout=2 2>&1 | FileCheck %s --check-prefix=InfiniteTest |
| 5 | InfiniteTest: ALARM: working on the last Unit for |
| 6 | InfiniteTest-NOT: CRASHED; file written to timeout |
| 7 | |
| 8 | RUN: not ./LLVMFuzzer-TimeoutTest -timeout=5 2>&1 | FileCheck %s --check-prefix=TimeoutTest |
| 9 | TimeoutTest: ALARM: working on the last Unit for |
| 10 | TimeoutTest: CRASHED; file written to timeout |
| 11 | |
| 12 | RUN: not ./LLVMFuzzer-NullDerefTest 2>&1 | FileCheck %s --check-prefix=NullDerefTest |
| 13 | NullDerefTest: CRASHED; file written to crash- |
Kostya Serebryany | 2c1b33b | 2015-01-29 23:01:07 +0000 | [diff] [blame] | 14 | |
Kostya Serebryany | 2e3622b | 2015-02-20 03:02:37 +0000 | [diff] [blame] | 15 | RUN: not ./LLVMFuzzer-FullCoverageSetTest -timeout=15 -seed=1 -mutate_depth=2 -use_full_coverage_set=1 2>&1 | FileCheck %s --check-prefix=FullCoverageSetTest |
Kostya Serebryany | 2c1b33b | 2015-01-29 23:01:07 +0000 | [diff] [blame] | 16 | FullCoverageSetTest: BINGO |
Kostya Serebryany | 2e3622b | 2015-02-20 03:02:37 +0000 | [diff] [blame] | 17 | |
| 18 | RUN: not ./LLVMFuzzer-FourIndependentBranchesTest -timeout=15 -seed=1 -use_coverage_pairs=1 2>&1 | FileCheck %s --check-prefix=FourIndependentBranchesTest |
| 19 | FourIndependentBranchesTest: BINGO |
Kostya Serebryany | be5e0ed | 2015-03-03 23:27:02 +0000 | [diff] [blame] | 20 | |
| 21 | RUN: not ./LLVMFuzzer-CounterTest -use_counters=1 -max_len=6 -seed=1 -timeout=15 2>&1 | FileCheck %s --check-prefix=CounterTest |
| 22 | CounterTest: BINGO |
Kostya Serebryany | 16d03bd | 2015-03-30 22:09:51 +0000 | [diff] [blame] | 23 | |
| 24 | RUN: not ./LLVMFuzzer-DFSanSimpleCmpTest -seed=1 -timeout=15 2>&1 | FileCheck %s --check-prefix=DFSanSimpleCmpTest |
| 25 | DFSanSimpleCmpTest: Found the target: |
Kostya Serebryany | 52a788e | 2015-03-31 20:13:20 +0000 | [diff] [blame^] | 26 | |
| 27 | RUN: not ./LLVMFuzzer-CxxTokensTest -seed=1 -timeout=15 -tokens=%S/../cxx_fuzzer_tokens.txt 2>&1 | FileCheck %s --check-prefix=CxxTokensTest |
| 28 | CxxTokensTest: Found the target, exiting |