File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
compiler/test/dotty/tools/vulpix Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,18 @@ import dotty.Properties
8
8
import TestConfiguration ._
9
9
10
10
/** Meta tests for the Vulpix test suite. This test follows the structure of
11
- * CompilationTests.scala. It is ment to be called from bash to diff with
11
+ * CompilationTests.scala. It is meant to be called from bash to diff with
12
12
* output againts an expected result.
13
13
*/
14
14
@ Category (Array (classOf [dotty.VulpixMetaTests ]))
15
15
class VulpixMetaTests extends ParallelTesting {
16
16
def maxDuration = 1 .seconds
17
- def numberOfSlaves = 5
18
- def safeMode = Properties .testsSafeMode
19
- def isInteractive = SummaryReport .isInteractive
20
- def testFilter = Properties .testsFilter
17
+ // Ensure maximum reproducibility.
18
+ def numberOfSlaves = 1
19
+ def safeMode = false // Don't fork a new VM after each run test
20
+ def isInteractive = false // Don't beautify output for interactive use.
21
+ def testFilter = None // Run all the tests.
22
+
21
23
implicit val summaryReport : SummaryReporting = new SummaryReport
22
24
implicit def testGroup : TestGroup = TestGroup (" VulpixMetaTests" )
23
25
You can’t perform that action at this time.
0 commit comments