File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -292,6 +292,9 @@ def _apply_default_arguments(args):
292
292
args .test_xros_host = False
293
293
args .test_android_host = False
294
294
295
+ if args .build_wasmstdlib :
296
+ args .test_wasmstdlib = True
297
+
295
298
296
299
def create_argument_parser ():
297
300
"""Return a configured argument parser."""
Original file line number Diff line number Diff line change 328
328
'test_swiftformat' : False ,
329
329
'test_swiftdocc' : False ,
330
330
'test_toolchainbenchmarks' : False ,
331
- 'test_wasmstdlib' : True ,
331
+ 'test_wasmstdlib' : False ,
332
332
'tvos' : False ,
333
333
'tvos_all' : False ,
334
334
'validation_test' : None ,
@@ -591,6 +591,7 @@ class BuildScriptImplOption(_BaseOption):
591
591
SetTrueOption ('--swiftdocc' , dest = 'build_swiftdocc' ),
592
592
SetTrueOption ('--build-minimal-stdlib' , dest = 'build_minimalstdlib' ),
593
593
SetTrueOption ('--build-wasm-stdlib' , dest = 'build_wasmstdlib' ),
594
+ SetTrueOption ('--test-wasm-stdlib' , dest = 'test_wasmstdlib' ),
594
595
SetTrueOption ('--wasmkit' , dest = 'build_wasmkit' ),
595
596
SetTrueOption ('--build-stdlib-docs' ),
596
597
SetTrueOption ('--preview-stdlib-docs' ),
You can’t perform that action at this time.
0 commit comments