1 RUN: mkdir -p %t 2 RUN: echo abcd > %t/NthRunCrashTest.in 3 RUN: LLVMFuzzer-NthRunCrashTest %t/NthRunCrashTest.in 4 RUN: LLVMFuzzer-NthRunCrashTest %t/NthRunCrashTest.in -runs=10 5 RUN: not LLVMFuzzer-NthRunCrashTest %t/NthRunCrashTest.in -runs=10000 2>&1 | FileCheck %s 6 RUN: rm %t/NthRunCrashTest.in 7 CHECK: BINGO 8 9