Skip to content

Commit 320cd7d

Browse files
committed
Auto merge of #3002 - RalfJung:miri-script, r=RalfJung
fix oversight from new miri-script
2 parents 10d77b9 + 26fc26f commit 320cd7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/miri/tests/compiletest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ fn test_config(target: &str, path: &str, mode: Mode, with_dependencies: bool) ->
7676
let skip_ui_checks = env::var_os("MIRI_SKIP_UI_CHECKS").is_some();
7777

7878
let output_conflict_handling = match (bless, skip_ui_checks) {
79-
(false, false) => OutputConflictHandling::Error("./miri bless".into()),
79+
(false, false) => OutputConflictHandling::Error("./miri test --bless".into()),
8080
(true, false) => OutputConflictHandling::Bless,
8181
(false, true) => OutputConflictHandling::Ignore,
8282
(true, true) => panic!("cannot use RUSTC_BLESS and MIRI_SKIP_UI_CHECKS at the same time"),

0 commit comments

Comments
 (0)