aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-04-09 13:30:34 +0200
committerMartin Odersky <odersky@gmail.com>2015-04-09 13:30:34 +0200
commit651b8ddbf518327c059ee053acf586a35903c87f (patch)
tree04b9c386d1226ba2fc4932eafd7c21ba269b75cd /test
parent673842f94e68beb6f8bfa8136b37578464b0e55b (diff)
downloaddotty-651b8ddbf518327c059ee053acf586a35903c87f.tar.gz
dotty-651b8ddbf518327c059ee053acf586a35903c87f.tar.bz2
dotty-651b8ddbf518327c059ee053acf586a35903c87f.zip
Make -Yno-double-bindings the default for all tests.
Diffstat (limited to 'test')
-rw-r--r--test/dotc/tests.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index bd092a482..095c5053b 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -14,21 +14,21 @@ class tests extends CompilerTest {
"-pagewidth", "160")
implicit val defaultOptions = noCheckOptions ++ List(
- "-Yno-deep-subtypes",
+ "-Yno-deep-subtypes", "-Yno-double-bindings",
"-Ycheck:tailrec,resolveSuper,mixin,restoreScopes",
"-d", "./out/"
)
val doEmitBytecode = List("-Ystop-before:terminal")
val failedbyName = List("-Ystop-before:collectEntryPoints") // #288
- val failedUnderscore = List("-Ystop-before:collectEntryPoints") // #289
val testPickling = List("-Xprint-types", "-Ytest-pickler", "-Ystop-after:pickler")
val failedOther = List("-Ystop-before:collectEntryPoints") // some non-obvious reason. need to look deeper
- val twice = List("#runs", "2", "-Yno-double-bindings")
+ val twice = List("#runs", "2")
val staleSymbolError: List[String] = List()
val allowDeepSubtypes = defaultOptions diff List("-Yno-deep-subtypes")
+ val allowDoubleBindings = defaultOptions diff List("-Yno-double-bindings")
val posDir = "./tests/pos/"
val posSpecialDir = "./tests/pos-special/"