From b0d7cf5df48a4d134efa9b833b576443ad38811d Mon Sep 17 00:00:00 2001 From: Jeremy Morse Date: Tue, 29 Jan 2019 13:06:17 +0000 Subject: [PATCH] Add 'REQUIRES: zlib' to a fuzzer test Fixes tests on build environments that don't have zlib. See also r352483. llvm-svn: 352487 --- compiler-rt/test/fuzzer/compressed.test | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/test/fuzzer/compressed.test b/compiler-rt/test/fuzzer/compressed.test index d5049b71c626..b2f4fd1d1578 100644 --- a/compiler-rt/test/fuzzer/compressed.test +++ b/compiler-rt/test/fuzzer/compressed.test @@ -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 -- GitLab