summaryrefslogtreecommitdiff
path: root/test/junit/scala/collection
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-08-31 16:33:00 +1000
committerLukas Rytz <lukas.rytz@gmail.com>2016-09-01 22:38:01 +0200
commitb75466868e2171dcc67b1db2666d186bf0afca89 (patch)
tree2c8a0ec37cc124f196473351b364bb35965dcb86 /test/junit/scala/collection
parentc492ac6022300ced8b56f523db5d17872e91b4b2 (diff)
downloadscala-b75466868e2171dcc67b1db2666d186bf0afca89.tar.gz
scala-b75466868e2171dcc67b1db2666d186bf0afca89.tar.bz2
scala-b75466868e2171dcc67b1db2666d186bf0afca89.zip
Disable stack hungry test of deprecated PagedSeq
Diffstat (limited to 'test/junit/scala/collection')
-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))
}