mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-05 20:07:48 +00:00
![Marcos Pividori](/assets/img/avatar_default.png)
Add the option "-n", so we don't add a new line character at the end of the file when using echo. (on Windows this means 2 characters). Differential Revision: https://reviews.llvm.org/D29536 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294384 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
683 B
Plaintext
16 lines
683 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: echo -n zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz > %t/SUB1/long
|
|
RUN: LLVMFuzzer-SimpleTest %t/SUB1 -runs=0 2>&1 | FileCheck %s --check-prefix=LONG
|
|
LONG: INFO: -max_len is not provided, using 93
|
|
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
|
|
|