]> git.proxmox.com Git - rustc.git/blob - src/libcompiler_builtins/compiler-rt/test/fuzzer/fuzzer-runs.test
New upstream version 1.25.0+dfsg1
[rustc.git] / src / libcompiler_builtins / compiler-rt / test / fuzzer / fuzzer-runs.test
1 RUN: mkdir -p %t
2 RUN: %cpp_compiler %S/NthRunCrashTest.cpp -o %t-NthRunCrashTest
3 RUN: echo abcd > %t/NthRunCrashTest.in
4 RUN: %t-NthRunCrashTest %t/NthRunCrashTest.in
5 RUN: %t-NthRunCrashTest %t/NthRunCrashTest.in -runs=10
6 RUN: not %t-NthRunCrashTest %t/NthRunCrashTest.in -runs=10000 2>&1 | FileCheck %s
7 RUN: rm %t/NthRunCrashTest.in
8 CHECK: BINGO
9