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 19677ab commit 812293fCopy full SHA for 812293f
test/sleep/CMakeLists.txt
@@ -66,8 +66,9 @@ add_executable(fortran_nano_sleep test_sleep.f90)
66
target_link_libraries(fortran_nano_sleep PRIVATE f_nano_sleep)
67
68
add_test(NAME Fortran_nano_sleep COMMAND fortran_nano_sleep)
69
-set_property(TEST Fortran_nano_sleep PROPERTY DISABLED true)
70
-# this test is shaky. Fails on MinGW and macOS Apple Silicon. Best to use an auxiliary C function to interface with C struct.
+if(APPLE AND CMAKE_Fortran_COMPILER_ID STREQUAL "LLVMFlang")
+ set_property(TEST Fortran_nano_sleep PROPERTY DISABLED true)
71
+endif()
72
73
endif()
74
0 commit comments