We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6178df6 commit 4e38606Copy full SHA for 4e38606
tests/run-make/translation/rmake.rs
@@ -57,12 +57,17 @@ 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
+ // XXX: do not merge, testing in CI
67
+ eprintln!("stdout: {:#?}", outcome.stdout_utf8());
68
+ eprintln!("stderr: {:#?}", outcome.stderr_utf8());
69
70
+ outcome.assert_exit_code(101);
71
}
72
73
#[track_caller]
0 commit comments