Skip to content

Commit b9d79a2

Browse files
committed
also 'check' the test suite
1 parent 86e53f4 commit b9d79a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

miri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ install|install-debug)
115115
;;
116116
check|check-debug)
117117
# Check, and let caller control flags.
118-
cargo check $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/Cargo.toml "$@"
118+
cargo check $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/Cargo.toml --all-targets "$@"
119119
cargo check $CARGO_BUILD_FLAGS --manifest-path "$MIRIDIR"/cargo-miri/Cargo.toml "$@"
120120
;;
121121
build|build-debug)

ui_test/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ pub fn run_tests(config: Config) {
9898
{
9999
let (m, errors) = run_test(&path, &config, &target, &revision, &comments);
100100

101-
// Using `format` to prevent messages from threads from getting intermingled.
101+
// Using a single `eprintln!` to prevent messages from threads from getting intermingled.
102102
let mut msg = format!("{} ", path.display());
103103
if !revision.is_empty() {
104104
write!(msg, "(revision `{revision}`) ").unwrap();

0 commit comments

Comments
 (0)