diff options
| author | Ralf Jung <post@ralfj.de> | 2022-10-14 08:40:55 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-10-14 08:41:59 +0200 |
| commit | dbb4271bb495bf3ac290b910a7ce1c48d73ad01c (patch) | |
| tree | 23fe9567ea5c101b65bc3d96c684de77fd79e1c8 | |
| parent | edabf59ca4646b3fc1a961c26431215001043f6a (diff) | |
| download | rust-dbb4271bb495bf3ac290b910a7ce1c48d73ad01c.tar.gz rust-dbb4271bb495bf3ac290b910a7ce1c48d73ad01c.zip | |
checktools: fix comments
| -rwxr-xr-x | src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh b/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh index cf00c285b0a..3e1f39eaab5 100755 --- a/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh +++ b/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh @@ -4,7 +4,7 @@ set -eu X_PY="$1" -# Try to test all the tools and store the build/test success in the TOOLSTATE_FILE +# Try to test the toolstate-tracked tools and store the build/test success in the TOOLSTATE_FILE. set +e python3 "$X_PY" test --stage 2 --no-fail-fast \ @@ -19,6 +19,8 @@ set -e # debugging: print out the saved toolstates cat /tmp/toolstate/toolstates.json + +# Test remaining tools that must pass. python3 "$X_PY" test --stage 2 check-tools python3 "$X_PY" test --stage 2 src/tools/clippy python3 "$X_PY" test --stage 2 src/tools/rustfmt |
