Skip to content

Commit

Permalink
Merge pull request scala#14 from gkossakowski/master
Browse files Browse the repository at this point in the history
Add support for Java 8 in filtered check feature.
  • Loading branch information
adriaanm committed Jan 21, 2014
2 parents 0cf8913 + d87a7ae commit cfb110c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/scala/scala/tools/partest/nest/Runner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ class Runner(val testFile: File, val suiteRunner: SuiteRunner) {
val (invert, token) =
if (f startsWith "!") (true, f drop 1) else (false, f)
val cond = token.trim match {
case "java8" => javaVersion startsWith "1.8"
case "java7" => javaVersion startsWith "1.7"
case "java6" => javaVersion startsWith "1.6"
case "avian" => isAvian
Expand Down

0 comments on commit cfb110c

Please sign in to comment.