aboutsummaryrefslogtreecommitdiff
path: root/compiler/test/dotty/tools/dotc/CompilationTests.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-04-03 17:04:46 +0200
committerFelix Mulder <felix.mulder@gmail.com>2017-04-12 11:21:56 +0200
commitd65e4eadaf5c9fbed379680de591bb3ef42c6b3d (patch)
tree32d8e235c3940b986ad3ed41909033ff8441cfde /compiler/test/dotty/tools/dotc/CompilationTests.scala
parent741ee1645a13c94fbb7edfd064b4ec092a69b1bf (diff)
downloaddotty-d65e4eadaf5c9fbed379680de591bb3ef42c6b3d.tar.gz
dotty-d65e4eadaf5c9fbed379680de591bb3ef42c6b3d.tar.bz2
dotty-d65e4eadaf5c9fbed379680de591bb3ef42c6b3d.zip
Rename test suite to "vulpix"
Diffstat (limited to 'compiler/test/dotty/tools/dotc/CompilationTests.scala')
-rw-r--r--compiler/test/dotty/tools/dotc/CompilationTests.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/test/dotty/tools/dotc/CompilationTests.scala b/compiler/test/dotty/tools/dotc/CompilationTests.scala
index 742b93fae..a2d632b19 100644
--- a/compiler/test/dotty/tools/dotc/CompilationTests.scala
+++ b/compiler/test/dotty/tools/dotc/CompilationTests.scala
@@ -3,16 +3,16 @@ package tools
package dotc
import org.junit.Test
-import java.io.{ File => JFile }
import org.junit.experimental.categories.Category
import scala.util.matching.Regex
+import vulpix.{ ParallelTesting, SummaryReport }
@Category(Array(classOf[ParallelTesting]))
-class CompilationTests extends ParallelSummaryReport with ParallelTesting {
+class CompilationTests extends SummaryReport with ParallelTesting {
import CompilationTests._
- def isInteractive: Boolean = ParallelSummaryReport.isInteractive
+ def isInteractive: Boolean = SummaryReport.isInteractive
def testFilter: Option[Regex] = sys.props.get("dotty.partest.filter").map(r => new Regex(r))
@@ -270,7 +270,7 @@ object CompilationTests {
val classPath = {
val paths = Jars.dottyTestDeps map { p =>
- val file = new JFile(p)
+ val file = new java.io.File(p)
assert(
file.exists,
s"""|File "$p" couldn't be found. Run `packageAll` from build tool before