diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2020-09-26 11:47:26 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2020-09-26 12:10:49 +0200 |
| commit | 6b8b9c4adbd7d8d53d730a3c01d154dec3bd179f (patch) | |
| tree | d4b458a0fd4314949ee4c0f63fcc064a183feef2 | |
| parent | 6f9c1323a7a0fe162a5642e229d54afec7ccb299 (diff) | |
| download | rust-6b8b9c4adbd7d8d53d730a3c01d154dec3bd179f.tar.gz rust-6b8b9c4adbd7d8d53d730a3c01d154dec3bd179f.zip | |
Disable stdout-during-shutdown test on emscripten.
| -rw-r--r-- | src/test/ui/stdout-during-shutdown.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/ui/stdout-during-shutdown.rs b/src/test/ui/stdout-during-shutdown.rs index c785fc08696..a6cf812ca64 100644 --- a/src/test/ui/stdout-during-shutdown.rs +++ b/src/test/ui/stdout-during-shutdown.rs @@ -1,5 +1,10 @@ // 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)] |
