mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
2d303ca2f5
llvm-svn: 271697
13 lines
431 B
Plaintext
13 lines
431 B
Plaintext
RUN: rm -rf %t/SUB1
|
|
RUN: mkdir -p %t/SUB1/SUB2/SUB3
|
|
RUN: echo a > %t/SUB1/a
|
|
RUN: echo b > %t/SUB1/SUB2/b
|
|
RUN: echo c > %t/SUB1/SUB2/SUB3/c
|
|
RUN: LLVMFuzzer-SimpleTest %t/SUB1 -runs=0 2>&1 | FileCheck %s --check-prefix=SUBDIRS
|
|
SUBDIRS: READ units: 3
|
|
RUN: rm -rf %t/SUB1
|
|
|
|
RUN: not LLVMFuzzer-SimpleTest NONEXISTENT_DIR 2>&1 | FileCheck %s --check-prefix=NONEXISTENT_DIR
|
|
NONEXISTENT_DIR: No such directory: NONEXISTENT_DIR; exiting
|
|
|