Skip to content

Commit 5605ed8

Browse files
committed
Auto merge of rust-lang#103180 - ferrocene:pa-qemu-user-mode, r=Mark-Simulacrum
Handle core dumps output in QEMU user mode In addition to the whole-system emulation/virtualization, QEMU also supports user-mode emulation, where the emulation happens as a normal process inside the parent system. This allows running most tests by simply spawning remote-test-server inside user-mode emulation. Unfortunately, QEMU always writes its own message in addition to the system one when a core dump happens, which breaks a few tests which match on the exact output of the system. This PR changes those tests to strip the (possible) QEMU output before checking if the output is expected.
2 parents 84365ff + 77bf2b9 commit 5605ed8

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

src/test/ui/alloc-error/default-alloc-error-hook.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,14 @@ fn main() {
1515
let me = env::current_exe().unwrap();
1616
let output = Command::new(&me).arg("next").output().unwrap();
1717
assert!(!output.status.success(), "{:?} is a success", output.status);
18-
assert_eq!(str::from_utf8(&output.stderr).unwrap(), "memory allocation of 42 bytes failed\n");
18+
19+
let mut stderr = str::from_utf8(&output.stderr).unwrap();
20+
21+
// When running inside QEMU user-mode emulation, there will be an extra message printed by QEMU
22+
// in the stderr whenever a core dump happens. Remove it before the check.
23+
stderr = stderr
24+
.strip_suffix("qemu: uncaught target signal 6 (Aborted) - core dumped\n")
25+
.unwrap_or(stderr);
26+
27+
assert_eq!(stderr, "memory allocation of 42 bytes failed\n");
1928
}

src/test/ui/runtime/rt-explody-panic-payloads.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ fn main() {
2222
}.expect("running the command should have succeeded");
2323
println!("{:#?}", output);
2424
let stderr = std::str::from_utf8(&output.stderr);
25-
assert!(stderr.map(|v| {
26-
v.ends_with("fatal runtime error: drop of the panic payload panicked\n")
27-
}).unwrap_or(false));
25+
assert!(stderr
26+
.map(|v| {
27+
// When running inside QEMU user-mode emulation, there will be an extra message printed
28+
// by QEMU in the stderr whenever a core dump happens. Remove it before the check.
29+
v.strip_suffix("qemu: uncaught target signal 6 (Aborted) - core dumped\n").unwrap_or(v)
30+
})
31+
.map(|v| { v.ends_with("fatal runtime error: drop of the panic payload panicked\n") })
32+
.unwrap_or(false));
2833
}

0 commit comments

Comments
 (0)