[PATCH] D21319: [LibFuzzer] Disable the `fuzzer-trace-pc.test` test on non-linux platforms.

Dan Liew via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 13 20:47:31 PDT 2016


delcypher updated this revision to Diff 60648.
delcypher added a comment.

Fix typo in comment.


http://reviews.llvm.org/D21319

Files:
  lib/Fuzzer/test/fuzzer-trace-pc.test

Index: lib/Fuzzer/test/fuzzer-trace-pc.test
===================================================================
--- lib/Fuzzer/test/fuzzer-trace-pc.test
+++ lib/Fuzzer/test/fuzzer-trace-pc.test
@@ -1,3 +1,7 @@
 CHECK: BINGO
+REQUIRES: linux
 RUN: not LLVMFuzzer-FourIndependentBranchesTest-TracePC      -seed=1 -runs=1000000 2>&1 | FileCheck %s
+// FIXME: The test below uses a significant amount of memory on OSX and
+// sometimes hits the 2GiB memory limit. This needs to be investigated. For now
+// only run the test on Linux.
 RUN: not LLVMFuzzer-FullCoverageSetTest-TracePC              -seed=1 -runs=10000000 2>&1 | FileCheck %s


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21319.60648.patch
Type: text/x-patch
Size: 636 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160614/6992bbd4/attachment.bin>


More information about the llvm-commits mailing list