File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
swift_build_support/swift_build_support/products Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ def _apply_default_arguments(args):
183
183
args .test_tvos = False
184
184
args .test_watchos = False
185
185
args .test_android = False
186
+ args .test_cmark = False
186
187
args .test_swiftpm = False
187
188
args .test_swift_driver = False
188
189
args .test_swiftsyntax = False
@@ -1069,6 +1070,8 @@ def create_argument_parser():
1069
1070
help = 'skip cleaning up swiftpm' )
1070
1071
option ('--skip-clean-swift-driver' , toggle_false ('clean_swift_driver' ),
1071
1072
help = 'skip cleaning up Swift driver' )
1073
+ option ('--skip-test-cmark' , toggle_false ('test_cmark' ),
1074
+ help = 'skip testing swiftpm' )
1072
1075
option ('--skip-test-swiftpm' , toggle_false ('test_swiftpm' ),
1073
1076
help = 'skip testing swiftpm' )
1074
1077
option ('--skip-test-swift-driver' , toggle_false ('test_swift_driver' ),
Original file line number Diff line number Diff line change 247
247
'test_watchos_host' : False ,
248
248
'test_watchos_simulator' : False ,
249
249
'test_playgroundsupport' : True ,
250
+ 'test_cmark' : False ,
250
251
'test_swiftpm' : False ,
251
252
'test_swift_driver' : False ,
252
253
'test_swiftsyntax' : False ,
@@ -620,6 +621,7 @@ class BuildScriptImplOption(_BaseOption):
620
621
dest = 'test_watchos_simulator' ),
621
622
DisableOption ('--skip-test-playgroundsupport' ,
622
623
dest = 'test_playgroundsupport' ),
624
+ DisableOption ('--skip-test-cmark' , dest = 'test_cmark' ),
623
625
DisableOption ('--skip-test-swiftpm' , dest = 'test_swiftpm' ),
624
626
DisableOption ('--skip-test-swift-driver' , dest = 'test_swift_driver' ),
625
627
DisableOption ('--skip-test-swiftsyntax' , dest = 'test_swiftsyntax' ),
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ def should_test(self, host_target):
86
86
if self .is_cross_compile_target (host_target ):
87
87
return False
88
88
89
- return self .args .test
89
+ return self .args .test_cmark
90
90
91
91
def test (self , host_target ):
92
92
"""
You can’t perform that action at this time.
0 commit comments