[PATCH] D27871: [libFuzzer] Remove AFL test on Windows.

Marcos Pividori via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 16 16:18:57 PST 2016


mpividori created this revision.
mpividori added reviewers: zturner, kcc.
mpividori added a subscriber: llvm-commits.
mpividori set the repository for this revision to rL LLVM.
Herald added a subscriber: mgorny.

Repository:
  rL LLVM

https://reviews.llvm.org/D27871

Files:
  lib/Fuzzer/test/no-coverage/CMakeLists.txt


Index: lib/Fuzzer/test/no-coverage/CMakeLists.txt
===================================================================
--- lib/Fuzzer/test/no-coverage/CMakeLists.txt
+++ lib/Fuzzer/test/no-coverage/CMakeLists.txt
@@ -17,8 +17,11 @@
 # AFL Driver test
 ###############################################################################
 
-add_executable(AFLDriverTest
-  ../AFLDriverTest.cpp ../../afl/afl_driver.cpp)
+if(NOT MSVC)
+  # AFL is not supported on Windows.
+  add_executable(AFLDriverTest
+    ../AFLDriverTest.cpp ../../afl/afl_driver.cpp)
+endif()
 
 set_target_properties(AFLDriverTest
     PROPERTIES RUNTIME_OUTPUT_DIRECTORY


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27871.81820.patch
Type: text/x-patch
Size: 638 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161217/457b0fbf/attachment.bin>


More information about the llvm-commits mailing list