We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6178df6 commit 67357feCopy full SHA for 67357fe
tests/run-make/translation/rmake.rs
@@ -57,12 +57,16 @@ fn broken_primary_bundle_prefers_fallback_bundle() {
57
// `broken.ftl`, even though the original intention seems to be that it should gracefully
58
// failover to the fallback bundle.
59
60
- rustc()
+ let outcome = rustc()
61
.env("RUSTC_ICE", "0") // disable ICE dump file, not needed
62
.input("test.rs")
63
.arg("-Ztranslate-additional-ftl=broken.ftl")
64
- .run_fail()
65
- .assert_exit_code(101);
+ .run_unchecked();
+
66
+ eprintln!("stdout: {:#?}", outcome.stdout_utf8());
67
+ eprintln!("stderr: {:#?}", outcome.stderr_utf8());
68
69
+ outcome.assert_exit_code(101);
70
}
71
72
#[track_caller]
0 commit comments