aboutsummaryrefslogtreecommitdiff
path: root/test/dotc/tests.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-12-21 09:06:47 +0100
committerDmitry Petrashko <dark@d-d.me>2015-12-21 09:06:47 +0100
commit13513b4a78ffb60472822792673dffdab7fe9194 (patch)
tree244a3619000549ef2a0a327c2601dde264a91c67 /test/dotc/tests.scala
parentc864e118e7bd04dcbd0503ab9af6729fda94ff3f (diff)
parent2505ad452e29a8644d3721fc52f7d02c98672fc0 (diff)
downloaddotty-13513b4a78ffb60472822792673dffdab7fe9194.tar.gz
dotty-13513b4a78ffb60472822792673dffdab7fe9194.tar.bz2
dotty-13513b4a78ffb60472822792673dffdab7fe9194.zip
Merge pull request #1007 from dotty-staging/fix/tests-ycheck
Fix typo in command run by 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 f5012efe9..8b4697684 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")
}