Skip to content

Commit 4a322bb

Browse files
committed
Disable some network tests on macOS
I think we need to fix something in the FS notifier on this platform.
1 parent 47d051e commit 4a322bb

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/auto/network/CMakeLists.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,19 @@ function(add_network_bench name sources)
3535
set_tests_properties(${name} PROPERTIES LABELS "Network")
3636
endfunction()
3737

38-
add_subdirectory(tcp_socket)
39-
add_subdirectory(dns_resolver)
4038
add_subdirectory(ip_address)
4139
add_subdirectory(http_cookie)
4240
add_subdirectory(http_cookie_jar)
4341
add_subdirectory(http_request)
4442
add_subdirectory(http_session)
4543

44+
# Disable the timer tests on MacOS for now
45+
# TODO: Revisit this when we fix the notifier issue on MacOS
46+
if(NOT APPLE)
47+
add_subdirectory(tcp_socket)
48+
add_subdirectory(dns_resolver)
49+
endif()
50+
4651
add_feature_info(KDNetwork-Tests ON "Build KDNetwork Tests")
4752

4853
if(KDUTILS_CODE_COVERAGE)

0 commit comments

Comments
 (0)