File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1890,7 +1890,11 @@ for deployment_target in "${STDLIB_DEPLOYMENT_TARGETS[@]}"; do
1890
1890
if [[ " $SKIP_TEST_SWIFTPM " ]]; then
1891
1891
continue
1892
1892
fi
1893
- # FIXME: We don't test swiftpm, yet...
1893
+ echo " --- Running tests for ${product} ---"
1894
+ set -x
1895
+ " ${swiftpm_bootstrap_command[@]} " --build-tests test
1896
+ { set +x; } 2> /dev/null
1897
+ # As swiftpm tests itself, we break early here.
1894
1898
continue
1895
1899
;;
1896
1900
xctest)
@@ -2177,8 +2181,11 @@ if [[ "${INSTALLABLE_PACKAGE}" ]] ; then
2177
2181
pushd " ${PKG_TESTS_SANDBOX} "
2178
2182
tar xzf " ${INSTALLABLE_PACKAGE} "
2179
2183
popd
2184
+
2185
+ set -x
2180
2186
(cd " ${PKG_TESTS_SOURCE_DIR} " &&
2181
2187
python " ${LIT_EXECUTABLE_PATH} " . -sv --param package-path=" ${PKG_TESTS_SANDBOX} " --param filecheck=" ${FILECHECK_EXECUTABLE_PATH} " )
2188
+ { set +x; } 2> /dev/null
2182
2189
fi
2183
2190
fi
2184
2191
You can’t perform that action at this time.
0 commit comments