[compiler-rt] 632ee38 - [libFuzzer] Further deflake exec-time test.

Matt Morehouse via llvm-commits llvm-commits at lists.llvm.org
Tue May 4 10:47:22 PDT 2021


Author: Matt Morehouse
Date: 2021-05-04T10:47:05-07:00
New Revision: 632ee385134905a882c1d1d009afabb2d352b073

URL: https://github.com/llvm/llvm-project/commit/632ee385134905a882c1d1d009afabb2d352b073
DIFF: https://github.com/llvm/llvm-project/commit/632ee385134905a882c1d1d009afabb2d352b073.diff

LOG: [libFuzzer] Further deflake exec-time test.

Increase runs to 200,000 since we currently get a random failure about
once per day on the buildbot.

Added: 
    

Modified: 
    compiler-rt/test/fuzzer/entropic-scale-per-exec-time.test

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/fuzzer/entropic-scale-per-exec-time.test b/compiler-rt/test/fuzzer/entropic-scale-per-exec-time.test
index 2b8fec98a7b08..ffcdf0ce5f44c 100644
--- a/compiler-rt/test/fuzzer/entropic-scale-per-exec-time.test
+++ b/compiler-rt/test/fuzzer/entropic-scale-per-exec-time.test
@@ -1,7 +1,7 @@
 REQUIRES: linux, x86_64
 RUN: %cpp_compiler %S/EntropicScalePerExecTimeTest.cpp -o %t-EntropicScalePerExecTimeTest
-RUN: not %run %t-EntropicScalePerExecTimeTest -entropic=1 -entropic_scale_per_exec_time=1 -seed=1 -runs=150000 -max_len=10
+RUN: not %run %t-EntropicScalePerExecTimeTest -entropic=1 -entropic_scale_per_exec_time=1 -seed=1 -runs=200000 -max_len=10
 
 # Without -entropic_scale_per_exec_time=1, the crash takes longer to find since
 # the slow path is explored first.
-RUN: %run %t-EntropicScalePerExecTimeTest -entropic=1 -seed=1 -runs=150000 -max_len=10
+RUN: %run %t-EntropicScalePerExecTimeTest -entropic=1 -seed=1 -runs=200000 -max_len=10


        


More information about the llvm-commits mailing list