diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-05-10 13:51:51 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2018-05-10 14:11:17 -0700 |
| commit | 2c5d13dc9ca6897ef65de99107e08cc4de5b11dc (patch) | |
| tree | 3a9feb1f986c63a674e46bba4503eff93f0c12ca /src/liballoc | |
| parent | 694ba9c04b8ab1d8a76e2549b213428f093bb359 (diff) | |
| download | rust-2c5d13dc9ca6897ef65de99107e08cc4de5b11dc.tar.gz rust-2c5d13dc9ca6897ef65de99107e08cc4de5b11dc.zip | |
Skip a memory-hungry test that OOMs
Attempting to fix https://travis-ci.org/rust-lang/rust/jobs/377407894 via some selective ignoring tests
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/tests/str.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/tests/str.rs b/src/liballoc/tests/str.rs index 2edd41a70b9..1a47e5433ea 100644 --- a/src/liballoc/tests/str.rs +++ b/src/liballoc/tests/str.rs @@ -479,6 +479,7 @@ mod slice_index { } #[test] + #[cfg(not(target_arch = "asmjs"))] // hits an OOM fn simple_big() { fn a_million_letter_x() -> String { let mut i = 0; |
