]> git.lizzy.rs Git - rust.git/commitdiff
Skip a memory-hungry test that OOMs
authorAlex Crichton <alex@alexcrichton.com>
Thu, 10 May 2018 20:51:51 +0000 (13:51 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 10 May 2018 21:11:17 +0000 (14:11 -0700)
Attempting to fix https://travis-ci.org/rust-lang/rust/jobs/377407894 via some
selective ignoring tests

src/liballoc/tests/str.rs

index 2edd41a70b945af71db27b33d5053ecc4c33900d..1a47e5433ea90d97455c7c8cf8a3ddb556dff6b1 100644 (file)
@@ -479,6 +479,7 @@ fn simple_unicode() {
     }
 
     #[test]
+    #[cfg(not(target_arch = "asmjs"))] // hits an OOM
     fn simple_big() {
         fn a_million_letter_x() -> String {
             let mut i = 0;