@@ -13,21 +13,12 @@ import vulpix._
13
13
import java .nio .file ._
14
14
15
15
@ Category (Array (classOf [BootstrappedOnlyTests ]))
16
- class BootstrappedOnlyCompilationTests extends ParallelTesting {
16
+ class BootstrappedOnlyCompilationTests {
17
17
import ParallelTesting ._
18
18
import TestConfiguration ._
19
19
import BootstrappedOnlyCompilationTests ._
20
20
import CompilationTest .aggregateTests
21
21
22
- // Test suite configuration --------------------------------------------------
23
-
24
- def maxDuration = 60 .seconds
25
- def numberOfSlaves = Runtime .getRuntime().availableProcessors()
26
- def safeMode = Properties .testsSafeMode
27
- def isInteractive = SummaryReport .isInteractive
28
- def testFilter = Properties .testsFilter
29
- def updateCheckFiles : Boolean = Properties .testsUpdateCheckfile
30
-
31
22
// Positive tests ------------------------------------------------------------
32
23
33
24
@ Test def posMacros : Unit = {
@@ -211,7 +202,19 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
211
202
}
212
203
}
213
204
214
- object BootstrappedOnlyCompilationTests {
205
+ object BootstrappedOnlyCompilationTests extends ParallelTesting {
206
+ // Test suite configuration --------------------------------------------------
207
+
208
+ def maxDuration = 60 .seconds
209
+ def numberOfSlaves = Runtime .getRuntime().availableProcessors()
210
+ def safeMode = Properties .testsSafeMode
211
+ def isInteractive = SummaryReport .isInteractive
212
+ def testFilter = Properties .testsFilter
213
+ def updateCheckFiles : Boolean = Properties .testsUpdateCheckfile
214
+
215
215
implicit val summaryReport : SummaryReporting = new SummaryReport
216
- @ AfterClass def cleanup (): Unit = summaryReport.echoSummary()
216
+ @ AfterClass def tearDown (): Unit = {
217
+ super .cleanup()
218
+ summaryReport.echoSummary()
219
+ }
217
220
}
0 commit comments