468663ddbb
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
10 lines
347 B
Plaintext
10 lines
347 B
Plaintext
RUN: mkdir -p %t
|
|
RUN: %cpp_compiler %S/NthRunCrashTest.cpp -o %t-NthRunCrashTest
|
|
RUN: echo abcd > %t/NthRunCrashTest.in
|
|
RUN: %t-NthRunCrashTest %t/NthRunCrashTest.in
|
|
RUN: %t-NthRunCrashTest %t/NthRunCrashTest.in -runs=10
|
|
RUN: not %t-NthRunCrashTest %t/NthRunCrashTest.in -runs=10000 2>&1 | FileCheck %s
|
|
RUN: rm %t/NthRunCrashTest.in
|
|
CHECK: BINGO
|
|
|