aboutsummaryrefslogtreecommitdiff
path: root/testprogs
diff options
context:
space:
mode:
authorAlexey Vishnyakov <vishnya@ispras.ru>2022-10-20 12:02:00 +0300
committerAlexey Vishnyakov <vishnya@ispras.ru>2022-10-20 12:02:00 +0300
commitfd3b37f2b6b5a14acc26e7fa1564c87167436f87 (patch)
treebbb6f3d0b6901cf763cf044bd0feddd510fe3d5a /testprogs
parent38185c896b55613294064cf2b2b282e376749730 (diff)
fuzz: Disable fuzz targets for Windows
Diffstat (limited to 'testprogs')
-rw-r--r--testprogs/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/testprogs/CMakeLists.txt b/testprogs/CMakeLists.txt
index 567f42aa..e53cd164 100644
--- a/testprogs/CMakeLists.txt
+++ b/testprogs/CMakeLists.txt
@@ -48,4 +48,8 @@ if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
add_test_executable(valgrindtest)
endif()
-add_subdirectory(fuzz)
+if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ add_subdirectory(fuzz)
+endif()