diff options
author | Jonathan Metzman <metzman@chromium.org> | 2019-04-30 17:58:56 +0000 |
---|---|---|
committer | Jonathan Metzman <metzman@chromium.org> | 2019-04-30 17:58:56 +0000 |
commit | 269766458211c64662c687c0ca1127cfef599b4a (patch) | |
tree | c0b8ab87d31939f64e394302d0237f1b6857c798 /compiler-rt/test | |
parent | 6fa864b7a6418e26c18e7355a32f58482c829f23 (diff) | |
download | llvm-269766458211c64662c687c0ca1127cfef599b4a.zip llvm-269766458211c64662c687c0ca1127cfef599b4a.tar.gz llvm-269766458211c64662c687c0ca1127cfef599b4a.tar.bz2 |
[libFuzzer] Enable for i386
Summary: Get libFuzzer to build on i386 and fix tests.
Subscribers: mgorny, #sanitizers, llvm-commits
Tags: #sanitizers, #llvm
Differential Revision: https://reviews.llvm.org/D61070
llvm-svn: 359585
Diffstat (limited to 'compiler-rt/test')
-rw-r--r-- | compiler-rt/test/fuzzer/compressed.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler-rt/test/fuzzer/compressed.test b/compiler-rt/test/fuzzer/compressed.test index 4c539c2..37ea613 100644 --- a/compiler-rt/test/fuzzer/compressed.test +++ b/compiler-rt/test/fuzzer/compressed.test @@ -1,5 +1,7 @@ REQUIRES: linux REQUIRES: zlib +# zlib is "supported" on i386 even when only for x86_64, explicitly make i386 +# unsupported by this test. UNSUPPORTED: i386 # Custom mutator should find this bug, w/o custom -- no chance. RUN: %cpp_compiler %S/CompressedTest.cpp -o %t-CompressedTestCustom -DCUSTOM_MUTATOR -lz |