Skip to content

Commit cfda4b1

Browse files
committed
[build-script] Allow specifying the number of lit workers
Allow tests to run with a different number of workers than build jobs if desired.
1 parent 435af14 commit cfda4b1

File tree

5 files changed

+20
-3
lines changed

5 files changed

+20
-3
lines changed

utils/build-script

+7
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,11 @@ def parse_preset_args():
500500
help="the number of parallel build jobs to use",
501501
type=int,
502502
dest="build_jobs")
503+
parser.add_argument(
504+
"--lit-jobs",
505+
help="the number of workers to use when testing with lit",
506+
type=int,
507+
dest="lit_jobs")
503508
parser.add_argument(
504509
"preset_substitutions_raw",
505510
help="'name=value' pairs that are substituted in the preset",
@@ -599,6 +604,8 @@ def main_preset():
599604
build_script_args += ["--sccache"]
600605
if args.build_jobs:
601606
build_script_args += ["--jobs", str(args.build_jobs)]
607+
if args.lit_jobs:
608+
build_script_args += ["--lit-jobs", str(args.lit_jobs)]
602609
if args.swiftsyntax_install_prefix:
603610
build_script_args += ["--install-swiftsyntax",
604611
"--install-destdir",

utils/build-script-impl

+4-3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ KNOWN_SETTINGS=(
6262
build-args "" "arguments to the build tool; defaults to -j8 when CMake generator is \"Unix Makefiles\""
6363
build-dir "" "out-of-tree build directory; default is in-tree. **This argument is required**"
6464
build-jobs "" "The number of parallel build jobs to use"
65+
lit-jobs "" "The number of workers to use when testing with lit"
6566
build-runtime-with-host-compiler "" "use the host c++ compiler to build everything"
6667
build-stdlib-deployment-targets "all" "space-separated list that filters which of the configured targets to build the Swift standard library for, or 'all'"
6768
build-toolchain-only "" "If set, only build the necessary tools to build an external toolchain"
@@ -829,10 +830,10 @@ function set_build_options_for_host() {
829830
)
830831

831832
llvm_cmake_options+=(
832-
-DLLVM_LIT_ARGS="${LLVM_LIT_ARGS} -j ${BUILD_JOBS}"
833+
-DLLVM_LIT_ARGS="${LLVM_LIT_ARGS} -j ${LIT_JOBS}"
833834
)
834835
swift_cmake_options+=(
835-
-DLLVM_LIT_ARGS="${LLVM_LIT_ARGS} -j ${BUILD_JOBS}"
836+
-DLLVM_LIT_ARGS="${LLVM_LIT_ARGS} -j ${LIT_JOBS}"
836837
)
837838

838839
if [[ "${CLANG_PROFILE_INSTR_USE}" ]]; then
@@ -2949,7 +2950,7 @@ for host in "${ALL_HOSTS[@]}"; do
29492950

29502951
if [[ "${ENABLE_ASAN}" ]] ; then
29512952
# Limit the number of parallel tests
2952-
LLVM_LIT_ARGS="${LLVM_LIT_ARGS} -j $(sysctl hw.physicalcpu | awk -v N=${BUILD_JOBS} '{ print (N < $2) ? N : int($2/2) }')"
2953+
LLVM_LIT_ARGS="${LLVM_LIT_ARGS} -j $(sysctl hw.physicalcpu | awk -v N=${LIT_JOBS} '{ print (N < $2) ? N : int($2/2) }')"
29532954
fi
29542955

29552956
FILTER_SWIFT_OPTION="--filter=[sS]wift"

utils/build_swift/build_swift/driver_arguments.py

+6
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,10 @@ def _apply_default_arguments(args):
153153
if not args.android or not args.build_android:
154154
args.build_android = False
155155

156+
# By default use the same number of lit workers as build jobs.
157+
if not args.lit_jobs:
158+
args.lit_jobs = args.build_jobs
159+
156160
# --test-paths implies --test and/or --validation-test
157161
# depending on what directories/files have been specified.
158162
if args.test_paths:
@@ -379,6 +383,8 @@ def create_argument_parser():
379383
option(['-j', '--jobs'], store_int('build_jobs'),
380384
default=multiprocessing.cpu_count(),
381385
help='the number of parallel build jobs to use')
386+
option(['--lit-jobs'], store_int('lit_jobs'),
387+
help='the number of workers to use when testing with lit')
382388

383389
option('--darwin-xcrun-toolchain', store,
384390
help='the name of the toolchain to use on Darwin')

utils/build_swift/tests/expected_options.py

+2
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@
186186
'libdispatch_build_variant': 'Debug',
187187
'libicu_build_variant': 'Debug',
188188
'libxml2_build_variant': 'Debug',
189+
'lit_jobs': multiprocessing.cpu_count(),
189190
'zlib_build_variant': 'Debug',
190191
'curl_build_variant': 'Debug',
191192
'bootstrapping_mode': None,
@@ -732,6 +733,7 @@ class BuildScriptImplOption(_BaseOption):
732733
IntOption('--swift-tools-max-parallel-lto-link-jobs'),
733734
EnableOption('--swift-tools-ld64-lto-codegen-only-for-supporting-targets'),
734735
IntOption('-j', dest='build_jobs'),
736+
IntOption('--lit-jobs', dest='lit_jobs'),
735737
IntOption('--dsymutil-jobs', dest='dsymutil_jobs'),
736738

737739
AppendOption('--cross-compile-hosts'),

utils/swift_build_support/swift_build_support/build_script_invocation.py

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ def convert_to_impl_arguments(self):
129129
"--cross-compile-append-host-target-to-destdir", str(
130130
args.cross_compile_append_host_target_to_destdir).lower(),
131131
"--build-jobs", str(args.build_jobs),
132+
"--lit-jobs", str(args.lit_jobs),
132133
"--common-cmake-options=%s" % ' '.join(
133134
pipes.quote(opt) for opt in cmake.common_options()),
134135
"--build-args=%s" % ' '.join(

0 commit comments

Comments
 (0)