Skip to content

Commit 4e38606

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

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

tests/run-make/translation/rmake.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,17 @@ 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+
// 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);
6671
}
6772

6873
#[track_caller]

0 commit comments

Comments
 (0)