[compiler-rt] r316627 - [libFuzzer] trying to make a test more stable on Mac

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 25 16:24:46 PDT 2017


Author: kcc
Date: Wed Oct 25 16:24:45 2017
New Revision: 316627

URL: http://llvm.org/viewvc/llvm-project?rev=316627&view=rev
Log:
[libFuzzer] trying to make a test more stable on Mac

Modified:
    compiler-rt/trunk/test/fuzzer/fuzzer-customcrossover.test

Modified: compiler-rt/trunk/test/fuzzer/fuzzer-customcrossover.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/fuzzer-customcrossover.test?rev=316627&r1=316626&r2=316627&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/fuzzer-customcrossover.test (original)
+++ compiler-rt/trunk/test/fuzzer/fuzzer-customcrossover.test Wed Oct 25 16:24:45 2017
@@ -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
 




More information about the llvm-commits mailing list