[compiler-rt] r352487 - Add 'REQUIRES: zlib' to a fuzzer test

Jeremy Morse via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 29 05:06:17 PST 2019


Author: jmorse
Date: Tue Jan 29 05:06:17 2019
New Revision: 352487

URL: http://llvm.org/viewvc/llvm-project?rev=352487&view=rev
Log:
Add 'REQUIRES: zlib' to a fuzzer test

Fixes tests on build environments that don't have zlib. See also r352483.

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

Modified: compiler-rt/trunk/test/fuzzer/compressed.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/compressed.test?rev=352487&r1=352486&r2=352487&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/compressed.test (original)
+++ compiler-rt/trunk/test/fuzzer/compressed.test Tue Jan 29 05:06:17 2019
@@ -1,4 +1,5 @@
 REQUIRES: linux
+REQUIRES: zlib
 # Custom mutator should find this bug, w/o custom -- no chance.
 RUN: %cpp_compiler %S/CompressedTest.cpp -o %t-CompressedTestCustom -DCUSTOM_MUTATOR -lz
 RUN: %cpp_compiler %S/CompressedTest.cpp -o %t-CompressedTestPlain -lz




More information about the llvm-commits mailing list