File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ set(DISPATCH_C_TESTS
159159# Tests that usually pass, but occasionally fail.
160160# Excluded by default for purposes of Swift CI
161161if (EXTENDED_TEST_SUITE)
162+ # When dispatch_group is reenabled here, also remove the if(EXTENDED_TEST_SUITE) condition below
162163 list (APPEND DISPATCH_C_TESTS
163164 priority
164165 concur
@@ -205,7 +206,10 @@ add_unit_test(dispatch_plusplus SOURCES dispatch_plusplus.cpp)
205206if (WIN32 )
206207 target_link_libraries (dispatch_io_net PRIVATE WS2_32)
207208else ()
208- target_link_libraries (dispatch_group PRIVATE m)
209+ # When dispatch_group is reenabled above, remove this
210+ if (EXTENDED_TEST_SUITE)
211+ target_link_libraries (dispatch_group PRIVATE m)
212+ endif ()
209213 target_link_libraries (dispatch_timer_short PRIVATE m)
210214endif ()
211215
You can’t perform that action at this time.
0 commit comments