[compiler-rt] r353000 - [libFuzzer][Windows] Reenable passing tests

Jonathan Metzman via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 3 08:53:32 PST 2019


Author: metzman
Date: Sun Feb  3 08:53:32 2019
New Revision: 353000

URL: http://llvm.org/viewvc/llvm-project?rev=353000&view=rev
Log:
[libFuzzer][Windows] Reenable passing tests

Summary:
Enable tests that were previously disabled because they didn't work on
Windows.

Reviewers: morehouse

Reviewed By: morehouse

Subscribers: morehouse

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

Modified:
    compiler-rt/trunk/test/fuzzer/cxxstring.test
    compiler-rt/trunk/test/fuzzer/minimize_crash.test
    compiler-rt/trunk/test/fuzzer/minimize_two_crashes.test
    compiler-rt/trunk/test/fuzzer/null-deref-on-empty.test
    compiler-rt/trunk/test/fuzzer/null-deref.test
    compiler-rt/trunk/test/fuzzer/value-profile-cmp.test
    compiler-rt/trunk/test/fuzzer/value-profile-cmp4.test
    compiler-rt/trunk/test/fuzzer/value-profile-load.test

Modified: compiler-rt/trunk/test/fuzzer/cxxstring.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/cxxstring.test?rev=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/cxxstring.test (original)
+++ compiler-rt/trunk/test/fuzzer/cxxstring.test Sun Feb  3 08:53:32 2019
@@ -1,4 +1,4 @@
-UNSUPPORTED: windows,freebsd
+UNSUPPORTED: freebsd
 
 RUN: %cpp_compiler %S/CxxStringEqTest.cpp -o %t-CxxStringEqTest
 

Modified: compiler-rt/trunk/test/fuzzer/minimize_crash.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/minimize_crash.test?rev=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/minimize_crash.test (original)
+++ compiler-rt/trunk/test/fuzzer/minimize_crash.test Sun Feb  3 08:53:32 2019
@@ -1,4 +1,3 @@
-UNSUPPORTED: windows
 RUN: %cpp_compiler %S/NullDerefTest.cpp -o %t-NullDerefTest
 RUN: %cpp_compiler %S/SingleByteInputTest.cpp -o %t-SingleByteInputTest
 RUN: mkdir -p %t.dir

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=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/minimize_two_crashes.test (original)
+++ compiler-rt/trunk/test/fuzzer/minimize_two_crashes.test Sun Feb  3 08:53:32 2019
@@ -1,5 +1,5 @@
 # Test that the minimizer stops when it sees a different bug.
-UNSUPPORTED: freebsd,windows
+UNSUPPORTED: freebsd
 
 # TODO: Find out why test fails on Darwin with -O2.
 RUN: %cpp_compiler -O0 %S/TwoDifferentBugsTest.cpp -o %t-TwoDifferentBugsTest

Modified: compiler-rt/trunk/test/fuzzer/null-deref-on-empty.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/null-deref-on-empty.test?rev=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/null-deref-on-empty.test (original)
+++ compiler-rt/trunk/test/fuzzer/null-deref-on-empty.test Sun Feb  3 08:53:32 2019
@@ -1,4 +1,3 @@
-UNSUPPORTED: windows
 RUN: %cpp_compiler %S/NullDerefOnEmptyTest.cpp -o %t-NullDerefOnEmptyTest
 
 RUN: not %run %t-NullDerefOnEmptyTest -print_final_stats=1 2>&1 | FileCheck %s --check-prefix=NULL_DEREF_ON_EMPTY

Modified: compiler-rt/trunk/test/fuzzer/null-deref.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/null-deref.test?rev=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/null-deref.test (original)
+++ compiler-rt/trunk/test/fuzzer/null-deref.test Sun Feb  3 08:53:32 2019
@@ -1,4 +1,3 @@
-UNSUPPORTED: windows
 RUN: %cpp_compiler %S/NullDerefTest.cpp -o %t-NullDerefTest
 
 RUN: not %run %t-NullDerefTest                  2>&1 | FileCheck %s --check-prefix=NullDerefTest

Modified: compiler-rt/trunk/test/fuzzer/value-profile-cmp.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/value-profile-cmp.test?rev=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/value-profile-cmp.test (original)
+++ compiler-rt/trunk/test/fuzzer/value-profile-cmp.test Sun Feb  3 08:53:32 2019
@@ -1,5 +1,4 @@
-# FIXME: Disabled on Windows because of hangs.
-UNSUPPORTED: windows, ios
+UNSUPPORTED: ios
 CHECK: BINGO
 RUN: %cpp_compiler %S/SimpleCmpTest.cpp -o %t-SimpleCmpTest
 RUN: not %run %t-SimpleCmpTest -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s

Modified: compiler-rt/trunk/test/fuzzer/value-profile-cmp4.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/value-profile-cmp4.test?rev=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/value-profile-cmp4.test (original)
+++ compiler-rt/trunk/test/fuzzer/value-profile-cmp4.test Sun Feb  3 08:53:32 2019
@@ -1,5 +1,3 @@
-# FIXME: Disabled on Windows because of hangs.
-UNSUPPORTED: windows
 CHECK: BINGO
 RUN: %cpp_compiler %S/AbsNegAndConstant64Test.cpp -o %t-AbsNegAndConstant64Test
 RUN: not %run %t-AbsNegAndConstant64Test -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s

Modified: compiler-rt/trunk/test/fuzzer/value-profile-load.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/value-profile-load.test?rev=353000&r1=352999&r2=353000&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/value-profile-load.test (original)
+++ compiler-rt/trunk/test/fuzzer/value-profile-load.test Sun Feb  3 08:53:32 2019
@@ -1,5 +1,3 @@
-# FIXME: Disabled on Windows because of hangs.
-UNSUPPORTED: windows
 CHECK: AddressSanitizer: global-buffer-overflow
 RUN: %cpp_compiler %S/LoadTest.cpp -fsanitize-coverage=trace-gep -o %t-LoadTest
 RUN: not %run %t-LoadTest -seed=2 -use_cmp=0 -use_value_profile=1 -runs=20000000 2>&1 | FileCheck %s




More information about the llvm-commits mailing list