[compiler-rt] r328576 - [libFuzzer] Do not optimize minimize_two_crashes.test.

Matt Morehouse via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 26 12:36:20 PDT 2018


Author: morehouse
Date: Mon Mar 26 12:36:20 2018
New Revision: 328576

URL: http://llvm.org/viewvc/llvm-project?rev=328576&view=rev
Log:
[libFuzzer] Do not optimize minimize_two_crashes.test.

Speculative fix for build bot breakage on Mac.

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

Modified: compiler-rt/trunk/test/fuzzer/minimize_two_crashes.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/minimize_two_crashes.test?rev=328576&r1=328575&r2=328576&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/minimize_two_crashes.test (original)
+++ compiler-rt/trunk/test/fuzzer/minimize_two_crashes.test Mon Mar 26 12:36:20 2018
@@ -1,7 +1,7 @@
 # Test that the minimizer stops when it sees a differe bug.
 UNSUPPORTED: freebsd
 
-RUN: %cpp_compiler %S/TwoDifferentBugsTest.cpp -o %t-TwoDifferentBugsTest
+RUN: %cpp_compiler -O0 %S/TwoDifferentBugsTest.cpp -o %t-TwoDifferentBugsTest
 
 RUN: rm -rf %t && mkdir %t
 RUN: echo H12345678901234667888090 > %t/long_crash




More information about the llvm-commits mailing list