aboutsummaryrefslogtreecommitdiff
path: root/test/dotc/tests.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-11-17 17:08:26 +0100
committerMartin Odersky <odersky@gmail.com>2014-11-17 17:08:42 +0100
commite63feffe063987df54cb9a5916003eb400c0b49d (patch)
tree2fa127537afdcdfaf0b6847232382c9c3b03275d /test/dotc/tests.scala
parenta75b21b43962e809284f923741c0aa7a03499ab3 (diff)
downloaddotty-e63feffe063987df54cb9a5916003eb400c0b49d.tar.gz
dotty-e63feffe063987df54cb9a5916003eb400c0b49d.tar.bz2
dotty-e63feffe063987df54cb9a5916003eb400c0b49d.zip
Moved pending tests that work into pos and neg.
One test (t2613) required lifting a hard recursion limit in findMember (used for debug only, will be removed in the future). The same test also requires -Yno-deep-subtypes to be reset, so it's in pos_special instead of pos.
Diffstat (limited to 'test/dotc/tests.scala')
-rw-r--r--test/dotc/tests.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index 966c231e4..b6ff07efb 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -23,6 +23,7 @@ class tests extends CompilerTest {
val allowDeepSubtypes = defaultOptions diff List("-Yno-deep-subtypes")
val posDir = "./tests/pos/"
+ val posSpecialDir = "./tests/pos-special/"
val negDir = "./tests/neg/"
val newDir = "./tests/new/"
val dotcDir = "./src/dotty/"
@@ -57,6 +58,7 @@ class tests extends CompilerTest {
@Test def pos_tailcall = compileDir(posDir + "tailcall/", doErase)
@Test def pos_nullarify = compileFile(posDir, "nullarify", "-Ycheck:nullarify" :: doErase)
@Test def pos_subtyping = compileFile(posDir, "subtyping", doErase)
+ @Test def pos_t2613 = compileFile(posSpecialDir, "t2613", doErase)(allowDeepSubtypes)
@Test def pos_all = compileFiles(posDir, twice)
@Test def new_all = compileFiles(newDir, twice)