Skip to content

Commit

Permalink
xtask: fix wording for the no_std check label.
Browse files Browse the repository at this point in the history
It doesn't run tests, so it shouldn't say that it runs tests.
  • Loading branch information
kpreid committed Sep 19, 2023
1 parent 9a3e872 commit c60bcee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/xtask/src/xtask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ fn do_for_all_packages(
// Check `all-is-cubes` with default features disabled, because that's
// more easily broken by accident (such as by introducing an unintended
// `Send` bound) then our other features.
let _t = CaptureTime::new(time_log, format!("{op:?} aic no_std"));
let _t = CaptureTime::new(time_log, "check aic no_std");
cargo()
.arg(op.non_build_check_subcmd())
.args(["--package=all-is-cubes", "--no-default-features"])
Expand Down

0 comments on commit c60bcee

Please sign in to comment.