rust/tests/ui/runtime/stdout-during-shutdown-unix.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
502 B
Rust
Raw Normal View History

//@ run-pass
//@ check-run-results
//@ ignore-emscripten
2024-04-18 21:49:07 +00:00
//@ only-unix
// Emscripten doesn't flush its own stdout buffers on exit, which would fail
// this test. So this test is disabled on this platform.
// See https://emscripten.org/docs/getting_started/FAQ.html#what-does-exiting-the-runtime-mean-why-don-t-atexit-s-run
#![feature(rustc_private)]
extern crate libc;
fn main() {
extern "C" fn bye() {
print!(", world!");
}
unsafe { libc::atexit(bye) };
print!("hello");
}