Lines Matching +full:runs +full:- +full:on
1 # Uses echo in a way that is not supported by the iOS "run-on-device" script.
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…
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…
15 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest 2>&1 | FileCheck %s --chec…
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…
20 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest,nonexistent-file, 2>&1 | F…
24 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs=@nonexistent-file 2>&1 | FileCheck %s --check-pref…
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…
27 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs= 2>&1 | FileCheck %s --check-prefix=EMPTY