aboutsummaryrefslogtreecommitdiff
path: root/test/dotc/tests.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2015-12-21 00:16:07 +0100
committerGuillaume Martres <smarter@ubuntu.com>2015-12-21 00:16:10 +0100
commit2505ad452e29a8644d3721fc52f7d02c98672fc0 (patch)
treea185a8766331b42401a75a3c6e377f82aab2fb67 /test/dotc/tests.scala
parent6fc069f55d9d29a781b9ca2e021f8b3273327c56 (diff)
downloaddotty-2505ad452e29a8644d3721fc52f7d02c98672fc0.tar.gz
dotty-2505ad452e29a8644d3721fc52f7d02c98672fc0.tar.bz2
dotty-2505ad452e29a8644d3721fc52f7d02c98672fc0.zip
Fix typo in command run by Jenkins
The effect of this typo was that Ycheck:tailrec was never run on Jenkins.
Diffstat (limited to 'test/dotc/tests.scala')
-rw-r--r--test/dotc/tests.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index 0ac043daf..5f256731a 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -25,7 +25,7 @@ class tests extends CompilerTest {
implicit val defaultOptions = noCheckOptions ++ List(
"-Yno-deep-subtypes", "-Yno-double-bindings",
"-d", defaultOutputDir) ++ {
- if (isRunByJenkins) List("-Ycheck:-Ycheck:tailrec,resolveSuper,mixin,restoreScopes,labelDef") // should be Ycheck:all, but #725
+ if (isRunByJenkins) List("-Ycheck:tailrec,resolveSuper,mixin,restoreScopes,labelDef") // should be Ycheck:all, but #725
else List("-Ycheck:tailrec,resolveSuper,mixin,restoreScopes,labelDef")
}