File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
validation-test/BuildSystem Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -552,6 +552,8 @@ class BuildScriptInvocation(object):
552
552
impl_args += ["--long-test" ]
553
553
if args .stress_test :
554
554
impl_args += ["--stress-test" ]
555
+ if args .skip_local_build :
556
+ impl_args += ["--skip-local-build" ]
555
557
if args .only_executable_test :
556
558
impl_args += ["--only-executable-test" ]
557
559
if not args .benchmark :
Original file line number Diff line number Diff line change
1
+ # RUN: %swift_src_root/utils/build-script --dump-config --skip-local-build 2>&1 | %FileCheck %s -check-prefix=CONFIG
2
+ # CONFIG: "skip_local_build": true
3
+
4
+ # RUN: %swift_src_root/utils/build-script --dry-run --verbose-build --skip-local-build 2>&1 | %FileCheck %s -check-prefix=DRY
5
+ # DRY: build-script-impl
6
+ # DRY-SAME: --skip-local-build
You can’t perform that action at this time.
0 commit comments