[compiler-rt] r336966 - [fuzzer] [tests] Increase the number of iterations for three-bytes.test

George Karpenkov via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 12 18:21:50 PDT 2018


Author: george.karpenkov
Date: Thu Jul 12 18:21:50 2018
New Revision: 336966

URL: http://llvm.org/viewvc/llvm-project?rev=336966&view=rev
Log:
[fuzzer] [tests] Increase the number of iterations for three-bytes.test

The test is flaky otherwise on some of our macOS machines in the test fleet.

Differential Revision: https://reviews.llvm.org/D49277

Modified:
    compiler-rt/trunk/test/fuzzer/three-bytes.test

Modified: compiler-rt/trunk/test/fuzzer/three-bytes.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/three-bytes.test?rev=336966&r1=336965&r2=336966&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/three-bytes.test (original)
+++ compiler-rt/trunk/test/fuzzer/three-bytes.test Thu Jul 12 18:21:50 2018
@@ -3,6 +3,6 @@ RUN: %cpp_compiler %S/ThreeBytes.cpp -o
 
 RUN:     %run %t -seed=1 -runs=100000
 RUN:     %run %t -seed=1 -runs=100000 -use_value_profile=1
-RUN: not %run %t -seed=1 -runs=100000 -use_value_profile=2 2>&1 | FileCheck %s
+RUN: not %run %t -seed=1 -runs=1000000 -use_value_profile=2 2>&1 | FileCheck %s
 
 CHECK: Test unit written




More information about the llvm-commits mailing list