Skip to content

Commit 32073ac

Browse files
skip multicast test on Darwin (holepunchto#257)
* skip multicast test on Apple Co-authored-by: Kasper Isager Dalsgarð <kasperisager@hey.com> --------- Co-authored-by: Kasper Isager Dalsgarð <kasperisager@hey.com>
1 parent a2ea06a commit 32073ac

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/CMakeLists.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,15 @@ list(APPEND tests
2828

2929
list(APPEND skipped_tests
3030
stream-write-read-perf
31-
socket-send-recv-multicast
3231
)
3332

33+
if(APPLE)
34+
list(APPEND skipped_tests
35+
socket-send-recv-multicast
36+
)
37+
endif()
38+
39+
3440
foreach(test IN LISTS tests)
3541
add_executable(${test} ${test}.c)
3642

0 commit comments

Comments
 (0)