[compiler-rt] 84bf107 - [libFuzzer] Disable non-exec-time test again.

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


Author: Matt Morehouse
Date: 2021-05-04T10:51:46-07:00
New Revision: 84bf107d50af1b8af122024773088f2e53b0802a

URL: https://github.com/llvm/llvm-project/commit/84bf107d50af1b8af122024773088f2e53b0802a
DIFF: https://github.com/llvm/llvm-project/commit/84bf107d50af1b8af122024773088f2e53b0802a.diff

LOG: [libFuzzer] Disable non-exec-time test again.

It was previously disabled for the past 6+ months.  I tried to re-enable
it after some deflaking, but it still fails occasionally.

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 ffcdf0ce5f44..d8baf59da97a 100644
--- a/compiler-rt/test/fuzzer/entropic-scale-per-exec-time.test
+++ b/compiler-rt/test/fuzzer/entropic-scale-per-exec-time.test
@@ -3,5 +3,6 @@ RUN: %cpp_compiler %S/EntropicScalePerExecTimeTest.cpp -o %t-EntropicScalePerExe
 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=200000 -max_len=10
+# the slow path is explored first.  This test is disabled because it sometimes
+# finds the bug under certain configs.
+DISABLED: %run %t-EntropicScalePerExecTimeTest -entropic=1 -seed=1 -runs=200000 -max_len=10


        


More information about the llvm-commits mailing list