summaryrefslogtreecommitdiffstats
path: root/src/test/ui/runtime/stdout-during-shutdown.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/runtime/stdout-during-shutdown.rs')
-rw-r--r--src/test/ui/runtime/stdout-during-shutdown.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/runtime/stdout-during-shutdown.rs b/src/test/ui/runtime/stdout-during-shutdown.rs
deleted file mode 100644
index a6cf812ca..000000000
--- a/src/test/ui/runtime/stdout-during-shutdown.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// run-pass
-// check-run-results
-// ignore-emscripten
-
-// 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");
-}