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
159
159
# Tests that usually pass, but occasionally fail.
160
160
# Excluded by default for purposes of Swift CI
161
161
if (EXTENDED_TEST_SUITE )
162
+ # When dispatch_group is reenabled here, also remove the if(EXTENDED_TEST_SUITE) condition below
162
163
list (APPEND DISPATCH_C_TESTS
163
164
priority
164
165
concur
@@ -205,7 +206,10 @@ add_unit_test(dispatch_plusplus SOURCES dispatch_plusplus.cpp)
205
206
if (WIN32 )
206
207
target_link_libraries (dispatch_io_net PRIVATE WS2_32 )
207
208
else ()
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 ()
209
213
target_link_libraries (dispatch_timer_short PRIVATE m )
210
214
endif ()
211
215
You can’t perform that action at this time.
0 commit comments