We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47d051e commit 4a322bbCopy full SHA for 4a322bb
tests/auto/network/CMakeLists.txt
@@ -35,14 +35,19 @@ function(add_network_bench name sources)
35
set_tests_properties(${name} PROPERTIES LABELS "Network")
36
endfunction()
37
38
-add_subdirectory(tcp_socket)
39
-add_subdirectory(dns_resolver)
40
add_subdirectory(ip_address)
41
add_subdirectory(http_cookie)
42
add_subdirectory(http_cookie_jar)
43
add_subdirectory(http_request)
44
add_subdirectory(http_session)
45
+# Disable the timer tests on MacOS for now
+# 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
+
51
add_feature_info(KDNetwork-Tests ON "Build KDNetwork Tests")
52
53
if(KDUTILS_CODE_COVERAGE)
0 commit comments