aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Dmitry Lomov <dslomov@google.com>2016-04-25 08:39:28 +0000
committerGravatar Yun Peng <pcloudy@google.com>2016-04-25 09:11:02 +0000
commitcee46fd37ebd1f24b4a198ce2321dff93ab83037 (patch)
tree7a5f28cd3151191d9bd83aadbb8932df8acd4a4c /scripts
parent2bf6e92354adc8e16210f54c6538e9b9ddd41179 (diff)
Failing tests on Windows shouldn't fail the build.
Helps with #1182. -- MOS_MIGRATED_REVID=120686181
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/windows/compile_windows.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/ci/windows/compile_windows.sh b/scripts/ci/windows/compile_windows.sh
index bc6bf07406..a4a8555959 100755
--- a/scripts/ci/windows/compile_windows.sh
+++ b/scripts/ci/windows/compile_windows.sh
@@ -39,8 +39,10 @@ mkdir -p "${TMPDIR}" # mkdir does work with a path starting with 'c:/', wow
# Even though there are no quotes around $* in the .bat file, arguments
# containing spaces seem to be passed properly.
+echo "Bootstrapping Bazel"
./compile.sh "$*" || exit $?
# Run the only Windows-specific test we have.
# todo(bazel-team): add more tests here.
-exec ./output/bazel --batch test //src/test/shell/bazel:bazel_windows_cpp_test
+echo "Running tests"
+./output/bazel --batch test //src/test/shell/bazel:bazel_windows_cpp_test