Skip to content

Commit 67357fe

Browse files
committed
[DO NOT MERGE] what does CI see
1 parent 6178df6 commit 67357fe

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tests/run-make/translation/rmake.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,16 @@ fn broken_primary_bundle_prefers_fallback_bundle() {
5757
// `broken.ftl`, even though the original intention seems to be that it should gracefully
5858
// failover to the fallback bundle.
5959

60-
rustc()
60+
let outcome = rustc()
6161
.env("RUSTC_ICE", "0") // disable ICE dump file, not needed
6262
.input("test.rs")
6363
.arg("-Ztranslate-additional-ftl=broken.ftl")
64-
.run_fail()
65-
.assert_exit_code(101);
64+
.run_unchecked();
65+
66+
eprintln!("stdout: {:#?}", outcome.stdout_utf8());
67+
eprintln!("stderr: {:#?}", outcome.stderr_utf8());
68+
69+
outcome.assert_exit_code(101);
6670
}
6771

6872
#[track_caller]

0 commit comments

Comments
 (0)