mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-30 00:32:53 +00:00
21e8db8cc1
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271697 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
307 B
Plaintext
9 lines
307 B
Plaintext
RUN: mkdir -p %t
|
|
RUN: echo abcd > %t/NthRunCrashTest.in
|
|
RUN: LLVMFuzzer-NthRunCrashTest %t/NthRunCrashTest.in
|
|
RUN: LLVMFuzzer-NthRunCrashTest %t/NthRunCrashTest.in -runs=10
|
|
RUN: not LLVMFuzzer-NthRunCrashTest %t/NthRunCrashTest.in -runs=10000 2>&1 | FileCheck %s
|
|
RUN: rm %t/NthRunCrashTest.in
|
|
CHECK: BINGO
|
|
|