Skip to content

Commit c798cf0

Browse files
committed
Updated expected_options and defaults in driver_arguments
1 parent 95bbfd3 commit c798cf0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

utils/build_swift/build_swift/driver_arguments.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,9 @@ def _apply_default_arguments(args):
292292
args.test_xros_host = False
293293
args.test_android_host = False
294294

295+
if args.build_wasmstdlib:
296+
args.test_wasmstdlib = True
297+
295298

296299
def create_argument_parser():
297300
"""Return a configured argument parser."""

utils/build_swift/tests/expected_options.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@
328328
'test_swiftformat': False,
329329
'test_swiftdocc': False,
330330
'test_toolchainbenchmarks': False,
331-
'test_wasmstdlib': True,
331+
'test_wasmstdlib': False,
332332
'tvos': False,
333333
'tvos_all': False,
334334
'validation_test': None,
@@ -591,6 +591,7 @@ class BuildScriptImplOption(_BaseOption):
591591
SetTrueOption('--swiftdocc', dest='build_swiftdocc'),
592592
SetTrueOption('--build-minimal-stdlib', dest='build_minimalstdlib'),
593593
SetTrueOption('--build-wasm-stdlib', dest='build_wasmstdlib'),
594+
SetTrueOption('--test-wasm-stdlib', dest='test_wasmstdlib'),
594595
SetTrueOption('--wasmkit', dest='build_wasmkit'),
595596
SetTrueOption('--build-stdlib-docs'),
596597
SetTrueOption('--preview-stdlib-docs'),

0 commit comments

Comments
 (0)