Skip to content

Commit

Permalink
Rollup merge of rust-lang#103039 - RalfJung:checktools, r=Dylan-DPC
Browse files Browse the repository at this point in the history
checktools: fix comments

This bothers me each time I see it, time to fix it. ;)
r? ``@Mark-Simulacrum``
  • Loading branch information
matthiaskrgr authored Oct 14, 2022
2 parents 7f716ba + dbb4271 commit 1a48cd6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
Expand Down

0 comments on commit 1a48cd6

Please sign in to comment.