Skip to content

Commit cc179d9

Browse files
committed
Disable timer tests on macOS in CMake configuration
Needs more investigation in a separate PR.
1 parent 5d580aa commit cc179d9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/auto/foundation/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ add_subdirectory(event)
4141
add_subdirectory(event_queue)
4242
add_subdirectory(object)
4343
add_subdirectory(destruction_helper)
44-
add_subdirectory(timer)
44+
45+
# Disable the timer tests on MacOS for now
46+
if(NOT APPLE)
47+
add_subdirectory(timer)
48+
endif()
4549

4650
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
4751
add_subdirectory(linux_platform_event_loop)

0 commit comments

Comments
 (0)