Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / seed_inputs.test
blob45cec5ed5016472d832448fdd25d4b42f787213d
1 # Uses echo in a way that is not supported by the iOS "run-on-device" script.
2 UNSUPPORTED: ios
4 RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
6 USE-1: INFO: seed corpus: files: 1
7 RUN: echo -n "%t-SimpleTest" > %t.seed-inputs
8 # Test both formats of -seed_inputs argument.
9 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE-1
10 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest 2>&1 | FileCheck %s --check-prefix=USE-1
12 USE-2: INFO: seed corpus: files: 2
13 RUN: echo -n "%t-SimpleTest,%t-SimpleTest" > %t.seed-inputs
14 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE-2
15 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest 2>&1 | FileCheck %s --check-prefix=USE-2
17 # Test that missing files and trailing commas are tolerated.
18 RUN: echo -n "%t-SimpleTest,%t-SimpleTest,nonexistent-file," > %t.seed-inputs
19 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE-2
20 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest,nonexistent-file, 2>&1 | FileCheck %s --check-prefix=USE-2
22 # Test that using a non existent file or an empty seed list fails.
23 EMPTY: seed_inputs is empty or @file does not exist.
24 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs=@nonexistent-file 2>&1 | FileCheck %s --check-prefix=EMPTY
25 RUN: echo -n "" > %t.seed-inputs
26 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=EMPTY
27 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs= 2>&1 | FileCheck %s --check-prefix=EMPTY