1 RUN: rm -rf %t/PruneCorpus 2 RUN: mkdir -p %t/PruneCorpus 3 RUN: echo a > %t/PruneCorpus/a 4 RUN: echo b > %t/PruneCorpus/b 5 RUN: LLVMFuzzer-EmptyTest %t/PruneCorpus -prune_corpus=1 -runs=0 2>&1 | FileCheck %s --check-prefix=PRUNE 6 RUN: LLVMFuzzer-EmptyTest %t/PruneCorpus -prune_corpus=0 -runs=0 2>&1 | FileCheck %s --check-prefix=NOPRUNE 7 RUN: rm -rf %t/PruneCorpus 8 9 PRUNE: READ units: 2 10 PRUNE: INITED{{.*}}units: 1 11 NOPRUNE: READ units: 2 12 NOPRUNE: INITED{{.*}}units: 2 13 14