summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2017-10-25 23:24:45 +0000
committerKostya Serebryany <kcc@google.com>2017-10-25 23:24:45 +0000
commitf708c0ca7e3f1785d2702a0d0459f4a092718641 (patch)
tree3a5e5ef1b04f421726237498d046bf78327b98c6
parent56c02e11840e8b5778c17314a26e729bcb701fc1 (diff)
downloadcompiler-rt-f708c0ca7e3f1785d2702a0d0459f4a092718641.tar.gz
[libFuzzer] trying to make a test more stable on Mac
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@316627 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/fuzzer/fuzzer-customcrossover.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzzer/fuzzer-customcrossover.test b/test/fuzzer/fuzzer-customcrossover.test
index c32079f45..5a78307c7 100644
--- a/test/fuzzer/fuzzer-customcrossover.test
+++ b/test/fuzzer/fuzzer-customcrossover.test
@@ -1,6 +1,6 @@
RUN: %cpp_compiler %S/CustomCrossOverTest.cpp -o %t-CustomCrossOverTest
-RUN: not %t-CustomCrossOverTest -seed=1 -runs=100000 2>&1 | FileCheck %s --check-prefix=CHECK_CO
+RUN: not %t-CustomCrossOverTest -seed=1 -runs=1000000 2>&1 | FileCheck %s --check-prefix=CHECK_CO
Disable cross_over, verify that we can't find the target w/o it.
RUN: %t-CustomCrossOverTest -seed=1 -runs=1000000 -cross_over=0 2>&1 | FileCheck %s --check-prefix=CHECK_NO_CO