mirror of
https://github.com/nlohmann/json.git
synced 2024-12-21 03:47:52 +08:00
b21c345179
* 🚚 move files * 🚚 rename doc folder to docs * 🚚 rename test folder to tests
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
|
|
|