aboutsummaryrefslogtreecommitdiff
path: root/compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-04-04 16:43:51 +0200
committerFelix Mulder <felix.mulder@gmail.com>2017-04-12 11:21:57 +0200
commita3078ee21bab6da72fa0077fe140173785e17c6a (patch)
tree0cbac9ee8512b581f4acac09efdc012a8efc2ed2 /compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala
parent429066b6dacdd7670d1fce4b445d7bedc93df14d (diff)
downloaddotty-a3078ee21bab6da72fa0077fe140173785e17c6a.tar.gz
dotty-a3078ee21bab6da72fa0077fe140173785e17c6a.tar.bz2
dotty-a3078ee21bab6da72fa0077fe140173785e17c6a.zip
Fix settings having uninitialized values
Diffstat (limited to 'compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala')
-rw-r--r--compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala10
1 files changed, 4 insertions, 6 deletions
diff --git a/compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala b/compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala
index 8a5d16b83..a7da752bb 100644
--- a/compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala
+++ b/compiler/test/dotty/tools/dotc/vulpix/RunnerOrchestration.scala
@@ -1,6 +1,4 @@
-package dotty
-package tools
-package dotc
+package dotty.tools.dotc
package vulpix
import java.io.{
@@ -18,15 +16,15 @@ import scala.collection.mutable
trait RunnerOrchestration {
/** The maximum amount of active runners, which contain a child JVM */
- val numberOfSlaves: Int
+ def numberOfSlaves: Int
/** The maximum duration the child process is allowed to consume before
* getting destroyed
*/
- val maxDuration: Duration
+ def maxDuration: Duration
/** Destroy and respawn process after each test */
- val safeMode: Boolean
+ def safeMode: Boolean
/** Running a `Test` class's main method from the specified `dir` */
def runMain(dir: JFile): Status = monitor.runMain(dir)