@@ -233,7 +233,7 @@ def test(self):
233
233
'stress_test' )
234
234
235
235
def generate_should_skip_testing_platform (
236
- host_target , build_arg_name , test_arg_name ):
236
+ host_target , build_arg_name , test_arg_name , extra_test_arg_name = None ):
237
237
def test (self ):
238
238
args = self .default_args ()
239
239
setattr (args , build_arg_name , True )
@@ -245,6 +245,8 @@ def test(self):
245
245
self .assertEqual (len (before .swift_test_run_targets ), 0 )
246
246
247
247
setattr (args , test_arg_name , True )
248
+ if extra_test_arg_name is not None :
249
+ setattr (args , extra_test_arg_name , True )
248
250
after = HostSpecificConfiguration (host_target , args )
249
251
self .assertIn ('check-swift-{}' .format (host_target ),
250
252
after .swift_test_run_targets )
@@ -292,7 +294,8 @@ def test(self):
292
294
generate_should_skip_testing_platform (
293
295
'watchsimulator-x86_64' ,
294
296
'build_watchos_simulator' ,
295
- 'test_watchos_simulator' )
297
+ 'test_watchos_simulator' ,
298
+ 'test_watchos_64bit_simulator' )
296
299
297
300
def generate_should_allow_testing_only_host (
298
301
host_target , build_arg_name , test_arg_name , host_test_arg_name ):
0 commit comments