From 9c756f1ec05e854d4b873831035b2556d23ce6c1 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 12 May 2019 00:28:19 -0700 Subject: [PATCH] Disable ui tests on emscripten These hit a strange error in our Emscripten builder in Travis as well as locally through cargo web: ERROR: failed to execute cargo: Resource temporarily unavailable (os error 11) --- test_suite/tests/compiletest.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/test_suite/tests/compiletest.rs b/test_suite/tests/compiletest.rs index 214d4367..b73b833d 100644 --- a/test_suite/tests/compiletest.rs +++ b/test_suite/tests/compiletest.rs @@ -1,3 +1,4 @@ +#[cfg(not(target_os = "emscripten"))] #[rustc::attr(not(nightly), ignore)] #[test] fn ui() {