Lines Matching full:seed
6 USE-1: INFO: seed corpus: files: 1
7 RUN: echo -n "%t-SimpleTest" > %t.seed-inputs
9 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE…
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…
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…
22 # Test that using a non existent file or an empty seed list fails.
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…