Skip to content

Commit bb5e589

Browse files
committed
[build-script] build full stdlib when --long-test
--long-test implies `validation-test`. stdlib target should be `swift-stdlib-xxx` instead of `swift-test-stdlib-xxx`
1 parent acbec3a commit bb5e589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ for deployment_target in "${STDLIB_DEPLOYMENT_TARGETS[@]}"; do
10831083
if [[ "${BUILD_SWIFT_STDLIB_UNITTEST_EXTRA}" == "1" ]] ; then
10841084
SWIFT_STDLIB_TARGETS+=("swift-stdlib-${deployment_target}")
10851085
else
1086-
if [[ "${VALIDATION_TEST}" == "1" ]] ; then
1086+
if [[ "${VALIDATION_TEST}" == "1" || "${LONG_TEST}" == "1" ]] ; then
10871087
SWIFT_STDLIB_TARGETS+=("swift-stdlib-${deployment_target}")
10881088
else
10891089
SWIFT_STDLIB_TARGETS+=("swift-test-stdlib-${deployment_target}")

0 commit comments

Comments
 (0)