Home | History | Annotate | Download | only in test
      1 RUN: rm -rf %t/SUB1
      2 RUN: mkdir -p %t/SUB1/SUB2/SUB3
      3 RUN: echo a > %t/SUB1/a
      4 RUN: echo b > %t/SUB1/SUB2/b
      5 RUN: echo c > %t/SUB1/SUB2/SUB3/c
      6 RUN: LLVMFuzzer-SimpleTest %t/SUB1 -runs=0 2>&1 | FileCheck %s --check-prefix=SUBDIRS
      7 SUBDIRS: READ   units: 3
      8 RUN: rm -rf %t/SUB1
      9 
     10 RUN: not LLVMFuzzer-SimpleTest NONEXISTENT_DIR 2>&1 | FileCheck %s --check-prefix=NONEXISTENT_DIR
     11 NONEXISTENT_DIR: No such directory: NONEXISTENT_DIR; exiting
     12 
     13