Skip to content

Commit 3e32503

Browse files
committed
Add a test for --message-format parsing the mixed output of rustc
1 parent 853db74 commit 3e32503

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

tests/build.rs

+49
Original file line numberDiff line numberDiff line change
@@ -2470,6 +2470,55 @@ fn wrong_message_format_option() {
24702470
r#"[ERROR] Could not match 'xml' with any of the allowed variants: ["Human", "Json"]"#));
24712471
}
24722472

2473+
#[test]
2474+
fn message_format_json_forward_stderr() {
2475+
if is_nightly() { return }
2476+
2477+
let p = project("foo")
2478+
.file("Cargo.toml", &basic_bin_manifest("foo"))
2479+
.file("src/main.rs", "fn main() { let unused = 0; }");
2480+
2481+
assert_that(p.cargo_process("rustc").arg("--bin").arg("foo")
2482+
.arg("--message-format").arg("JSON").arg("--").arg("-Zno-trans"),
2483+
execs()
2484+
.with_stderr_contains("[WARNING] the option `Z` is unstable [..]")
2485+
.with_json(r#"
2486+
{
2487+
"reason":"compiler-message",
2488+
"package_id":"foo 0.5.0 ([..])",
2489+
"target":{"kind":["bin"],"name":"foo","src_path":"[..]"},
2490+
"message":{
2491+
"children":[],"code":null,"level":"warning","rendered":null,
2492+
"message":"unused variable: `unused`, #[warn(unused_variables)] on by default",
2493+
"spans":[{
2494+
"byte_end":22,"byte_start":16,"column_end":23,"column_start":17,"expansion":null,
2495+
"file_name":"[..]","is_primary":true,"label":null,"line_end":1,"line_start":1,
2496+
"suggested_replacement":null,
2497+
"text":[{
2498+
"highlight_end":23,
2499+
"highlight_start":17,
2500+
"text":"fn main() { let unused = 0; }"
2501+
}]
2502+
}]
2503+
}
2504+
}
2505+
2506+
{
2507+
"reason":"compiler-artifact",
2508+
"package_id":"foo 0.5.0 ([..])",
2509+
"target":{"kind":["bin"],"name":"foo","src_path":"[..]"},
2510+
"profile":{
2511+
"debug_assertions":true,
2512+
"debuginfo":true,
2513+
"opt_level":"0",
2514+
"test":false
2515+
},
2516+
"features":[],
2517+
"filenames":["[..]"]
2518+
}
2519+
"#));
2520+
}
2521+
24732522
#[test]
24742523
fn no_warn_about_package_metadata() {
24752524
let p = project("foo")

0 commit comments

Comments
 (0)