summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-08-31 16:33:00 +1000
committerJason Zaugg <jzaugg@gmail.com>2016-08-31 16:33:00 +1000
commit241fb9fe204d2974e0e1b2a60c2b71298e88f3b6 (patch)
tree37a83bac09d8d93df7b718a5f1d295a87be367d5 /test
parent1292e61ba654921971e2f403f11a4b1f901a94d7 (diff)
downloadscala-241fb9fe204d2974e0e1b2a60c2b71298e88f3b6.tar.gz
scala-241fb9fe204d2974e0e1b2a60c2b71298e88f3b6.tar.bz2
scala-241fb9fe204d2974e0e1b2a60c2b71298e88f3b6.zip
Disable stack hungry test of deprecated PagedSeq
Diffstat (limited to 'test')
-rw-r--r--test/junit/scala/collection/immutable/PagedSeqTest.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/junit/scala/collection/immutable/PagedSeqTest.scala b/test/junit/scala/collection/immutable/PagedSeqTest.scala
index 74f8825307..6c974db884 100644
--- a/test/junit/scala/collection/immutable/PagedSeqTest.scala
+++ b/test/junit/scala/collection/immutable/PagedSeqTest.scala
@@ -2,13 +2,14 @@ package scala.collection.immutable
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
-import org.junit.Test
+import org.junit.{Ignore, Test}
import org.junit.Assert._
@RunWith(classOf[JUnit4])
class PagedSeqTest {
// should not NPE, and should equal the given Seq
@Test
+ @Ignore("This tests a non-stack safe method in a deprecated class that requires ~1.5M stack, disabling")
def test_SI6615(): Unit = {
assertEquals(Seq('a'), PagedSeq.fromStrings(List.fill(5000)("a")).slice(4096, 4097))
}