diff options
author | Marcos Pividori <mpividori@google.com> | 2017-02-01 22:40:45 +0000 |
---|---|---|
committer | Marcos Pividori <mpividori@google.com> | 2017-02-01 22:40:45 +0000 |
commit | 36464dd6a567da8b37b13b039662f04ad5e9d11c (patch) | |
tree | 896643f6dfe5083cbaade463ee1586a64a187b2d /llvm/lib/Fuzzer/test | |
parent | b056879700580588fae45fd807e0e2ac89382d07 (diff) | |
download | bcm5719-llvm-36464dd6a567da8b37b13b039662f04ad5e9d11c.tar.gz bcm5719-llvm-36464dd6a567da8b37b13b039662f04ad5e9d11c.zip |
[libFuzzer] Disable equivalence tests on non posix systems.
We can not run this test until we implement shared memory on Windows.
Differential Revision: https://reviews.llvm.org/D29421
llvm-svn: 293829
Diffstat (limited to 'llvm/lib/Fuzzer/test')
-rw-r--r-- | llvm/lib/Fuzzer/test/equivalence.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/test/equivalence.test b/llvm/lib/Fuzzer/test/equivalence.test index 2728447e34a..c9b5f690202 100644 --- a/llvm/lib/Fuzzer/test/equivalence.test +++ b/llvm/lib/Fuzzer/test/equivalence.test @@ -1,3 +1,5 @@ +REQUIRES: posix + RUN: LLVMFuzzer-EquivalenceATest -run_equivalence_server=EQUIV_TEST & export APID=$! RUN: sleep 3 RUN: not LLVMFuzzer-EquivalenceBTest -use_equivalence_server=EQUIV_TEST -max_len=4096 2>&1 | FileCheck %s |