Skip to content

Commit 5de1495

Browse files
committed
tests: disable dispatch_io on Windows for now
This test will require some work to port to Windows because it makes use of <fts.h>. Disable it on Windows for now to make building easy.
1 parent 64310e3 commit 5de1495

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/CMakeLists.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,11 @@ if(EXTENDED_TEST_SUITE)
169169
pingpong
170170
drift
171171
readsync
172-
cascade
173-
io)
172+
cascade)
173+
if(NOT WIN32)
174+
# Not ported to Windows yet
175+
list(APPEND DISPATCH_C_TESTS io)
176+
endif()
174177
# an oddball; dispatch_priority.c compiled with -DUSE_SET_TARGET_QUEUE=1
175178
add_unit_test(dispatch_priority2 SOURCES dispatch_priority.c)
176179
target_compile_options(dispatch_priority2 PRIVATE -DUSE_SET_TARGET_QUEUE=1)

0 commit comments

Comments
 (0)