Skip to content

Commit d7f79cc

Browse files
committed
tests/utils: add fmt::Write implementations for miri's native stdout/stderr
1 parent d10f613 commit d7f79cc

10 files changed

+64
-59
lines changed

src/tools/miri/tests/fail/alloc/alloc_error_handler_custom.rs

+6-9
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@
77
extern crate alloc;
88

99
use alloc::alloc::*;
10+
use core::fmt::Write;
1011

11-
extern "Rust" {
12-
fn miri_write_to_stderr(bytes: &[u8]);
13-
}
12+
#[path = "../../utils/mod.no_std.rs"]
13+
mod utils;
1414

1515
#[alloc_error_handler]
16-
fn alloc_error_handler(_: Layout) -> ! {
17-
let msg = "custom alloc error handler called!\n";
18-
unsafe { miri_write_to_stderr(msg.as_bytes()) };
16+
fn alloc_error_handler(layout: Layout) -> ! {
17+
let _ = writeln!(utils::MiriStderr, "custom alloc error handler: {layout:?}");
1918
core::intrinsics::abort(); //~ERROR: aborted
2019
}
2120

@@ -25,9 +24,7 @@ mod plumbing {
2524

2625
#[panic_handler]
2726
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
28-
let msg = "custom panic handler called!\n";
29-
unsafe { miri_write_to_stderr(msg.as_bytes()) };
30-
core::intrinsics::abort();
27+
loop {}
3128
}
3229

3330
struct NoAlloc;

src/tools/miri/tests/fail/alloc/alloc_error_handler_custom.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
custom alloc error handler called!
1+
custom alloc error handler: Layout { size: 4, align: 4 (1 << 2) }
22
error: abnormal termination: the program aborted execution
33
--> $DIR/alloc_error_handler_custom.rs:LL:CC
44
|
@@ -12,8 +12,8 @@ note: inside `_::__rg_oom`
1212
|
1313
LL | #[alloc_error_handler]
1414
| ---------------------- in this procedural macro expansion
15-
LL | fn alloc_error_handler(_: Layout) -> ! {
16-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15+
LL | fn alloc_error_handler(layout: Layout) -> ! {
16+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1717
= note: inside `alloc::alloc::handle_alloc_error::rt_error` at RUSTLIB/alloc/src/alloc.rs:LL:CC
1818
= note: inside `alloc::alloc::handle_alloc_error` at RUSTLIB/alloc/src/alloc.rs:LL:CC
1919
note: inside `start`

src/tools/miri/tests/fail/alloc/alloc_error_handler_no_std.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
extern crate alloc;
88

99
use alloc::alloc::*;
10+
use core::fmt::Write;
1011

11-
extern "Rust" {
12-
fn miri_write_to_stderr(bytes: &[u8]);
13-
}
12+
#[path = "../../utils/mod.no_std.rs"]
13+
mod utils;
1414

1515
// The default no_std alloc_error_handler is a panic.
1616

1717
#[panic_handler]
18-
fn panic_handler(_panic_info: &core::panic::PanicInfo) -> ! {
19-
let msg = "custom panic handler called!\n";
20-
unsafe { miri_write_to_stderr(msg.as_bytes()) };
18+
fn panic_handler(panic_info: &core::panic::PanicInfo) -> ! {
19+
let _ = writeln!(utils::MiriStderr, "custom panic handler called!");
20+
let _ = writeln!(utils::MiriStderr, "{panic_info}");
2121
core::intrinsics::abort(); //~ERROR: aborted
2222
}
2323

src/tools/miri/tests/fail/alloc/alloc_error_handler_no_std.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
custom panic handler called!
2+
panicked at RUSTLIB/alloc/src/alloc.rs:LL:CC:
3+
memory allocation of 4 bytes failed
24
error: abnormal termination: the program aborted execution
35
--> $DIR/alloc_error_handler_no_std.rs:LL:CC
46
|
+4-20
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,11 @@
1+
//@compile-flags: -Cpanic=abort
12
#![feature(start, core_intrinsics)]
23
#![no_std]
3-
//@compile-flags: -Cpanic=abort
4-
5-
// Plumbing to let us use `writeln!` to host stderr:
6-
7-
extern "Rust" {
8-
fn miri_write_to_stderr(bytes: &[u8]);
9-
}
10-
11-
struct HostErr;
124

135
use core::fmt::Write;
146

15-
impl Write for HostErr {
16-
fn write_str(&mut self, s: &str) -> core::fmt::Result {
17-
unsafe {
18-
miri_write_to_stderr(s.as_bytes());
19-
}
20-
Ok(())
21-
}
22-
}
23-
24-
// Aaaand the test:
7+
#[path = "../../utils/mod.no_std.rs"]
8+
mod utils;
259

2610
#[start]
2711
fn start(_: isize, _: *const *const u8) -> isize {
@@ -30,6 +14,6 @@ fn start(_: isize, _: *const *const u8) -> isize {
3014

3115
#[panic_handler]
3216
fn panic_handler(panic_info: &core::panic::PanicInfo) -> ! {
33-
writeln!(HostErr, "{panic_info}").ok();
17+
writeln!(utils::MiriStderr, "{panic_info}").ok();
3418
core::intrinsics::abort(); //~ ERROR: the program aborted execution
3519
}

src/tools/miri/tests/pass/no_std.rs

+3-19
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,14 @@
22
#![feature(start)]
33
#![no_std]
44

5-
// Plumbing to let us use `writeln!` to host stdout:
6-
7-
extern "Rust" {
8-
fn miri_write_to_stdout(bytes: &[u8]);
9-
}
10-
11-
struct Host;
12-
135
use core::fmt::Write;
146

15-
impl Write for Host {
16-
fn write_str(&mut self, s: &str) -> core::fmt::Result {
17-
unsafe {
18-
miri_write_to_stdout(s.as_bytes());
19-
}
20-
Ok(())
21-
}
22-
}
23-
24-
// Aaaand the test:
7+
#[path = "../utils/mod.no_std.rs"]
8+
mod utils;
259

2610
#[start]
2711
fn start(_: isize, _: *const *const u8) -> isize {
28-
writeln!(Host, "hello, world!").unwrap();
12+
writeln!(utils::MiriStdout, "hello, world!").unwrap();
2913
0
3014
}
3115

src/tools/miri/tests/utils/io.rs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
use core::fmt::{self, Write};
2+
3+
use super::miri_extern;
4+
5+
pub struct MiriStderr;
6+
7+
impl Write for MiriStderr {
8+
fn write_str(&mut self, s: &str) -> fmt::Result {
9+
unsafe {
10+
miri_extern::miri_write_to_stderr(s.as_bytes());
11+
}
12+
Ok(())
13+
}
14+
}
15+
16+
pub struct MiriStdout;
17+
18+
impl Write for MiriStdout {
19+
fn write_str(&mut self, s: &str) -> fmt::Result {
20+
unsafe {
21+
miri_extern::miri_write_to_stdout(s.as_bytes());
22+
}
23+
Ok(())
24+
}
25+
}

src/tools/miri/tests/utils/miri_extern.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ extern "Rust" {
133133
/// with a null terminator.
134134
/// Returns 0 if the `out` buffer was large enough, and the required size otherwise.
135135
pub fn miri_host_to_target_path(
136-
path: *const std::ffi::c_char,
137-
out: *mut std::ffi::c_char,
136+
path: *const core::ffi::c_char,
137+
out: *mut core::ffi::c_char,
138138
out_size: usize,
139139
) -> usize;
140140

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![allow(dead_code)]
2+
#![allow(unused_imports)]
3+
4+
#[macro_use]
5+
mod macros;
6+
7+
mod io;
8+
mod miri_extern;
9+
10+
pub use self::io::*;
11+
pub use self::miri_extern::*;

src/tools/miri/tests/utils/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
mod macros;
66

77
mod fs;
8+
mod io;
89
mod miri_extern;
910

1011
pub use self::fs::*;
12+
pub use self::io::*;
1113
pub use self::miri_extern::*;
1214

1315
pub fn run_provenance_gc() {

0 commit comments

Comments
 (0)