Skip to content

Commit c96a0dd

Browse files
committed
Try run all bootstrapped tests
1 parent 89ff349 commit c96a0dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/test/dotty/tools/dotc/BootstrappedOnlyCompilationTests.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
3030

3131
// Positive tests ------------------------------------------------------------
3232

33-
@Test def posMacros: Unit = if (!scala.util.Properties.isWin) {
33+
@Test def posMacros: Unit = {
3434
implicit val testGroup: TestGroup = TestGroup("compilePosMacros")
3535
aggregateTests(
3636
compileFilesInDir("tests/bench", defaultOptions),
@@ -129,7 +129,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
129129
)
130130
}.checkRuns()
131131

132-
@Test def runWithCompiler: Unit = if (!scala.util.Properties.isWin) {
132+
@Test def runWithCompiler: Unit = {
133133
implicit val testGroup: TestGroup = TestGroup("runWithCompiler")
134134
aggregateTests(
135135
compileFilesInDir("tests/run-with-compiler", withCompilerOptions),
@@ -139,7 +139,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
139139
).checkRuns()
140140
}
141141

142-
@Test def runBootstrappedOnly: Unit = if (!scala.util.Properties.isWin) {
142+
@Test def runBootstrappedOnly: Unit = {
143143
implicit val testGroup: TestGroup = TestGroup("runBootstrappedOnly")
144144
aggregateTests(
145145
compileFilesInDir("tests/run-bootstrapped", withCompilerOptions),
@@ -151,7 +151,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
151151
// Pickling tests are very memory intensive and as such need to be run with a
152152
// lower level of concurrency as to not kill their running VMs
153153

154-
@Test def picklingWithCompiler: Unit = if (!scala.util.Properties.isWin) {
154+
@Test def picklingWithCompiler: Unit = {
155155
val jvmBackendFilter = FileFilter.exclude(List("BTypes.scala", "Primitives.scala")) // TODO
156156
implicit val testGroup: TestGroup = TestGroup("testPicklingWithCompiler")
157157
aggregateTests(

0 commit comments

Comments
 (0)