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