From d65e4eadaf5c9fbed379680de591bb3ef42c6b3d Mon Sep 17 00:00:00 2001 From: Felix Mulder Date: Mon, 3 Apr 2017 17:04:46 +0200 Subject: Rename test suite to "vulpix" --- compiler/test/dotty/tools/dotc/CompilationTests.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'compiler/test/dotty/tools/dotc/CompilationTests.scala') 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 -- cgit v1.2.3