@@ -30,7 +30,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
30
30
31
31
// Positive tests ------------------------------------------------------------
32
32
33
- @ Test def posMacros : Unit = if ( ! scala.util. Properties .isWin) {
33
+ @ Test def posMacros : Unit = {
34
34
implicit val testGroup : TestGroup = TestGroup (" compilePosMacros" )
35
35
aggregateTests(
36
36
compileFilesInDir(" tests/bench" , defaultOptions),
@@ -129,7 +129,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
129
129
)
130
130
}.checkRuns()
131
131
132
- @ Test def runWithCompiler : Unit = if ( ! scala.util. Properties .isWin) {
132
+ @ Test def runWithCompiler : Unit = {
133
133
implicit val testGroup : TestGroup = TestGroup (" runWithCompiler" )
134
134
aggregateTests(
135
135
compileFilesInDir(" tests/run-with-compiler" , withCompilerOptions),
@@ -139,7 +139,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
139
139
).checkRuns()
140
140
}
141
141
142
- @ Test def runBootstrappedOnly : Unit = if ( ! scala.util. Properties .isWin) {
142
+ @ Test def runBootstrappedOnly : Unit = {
143
143
implicit val testGroup : TestGroup = TestGroup (" runBootstrappedOnly" )
144
144
aggregateTests(
145
145
compileFilesInDir(" tests/run-bootstrapped" , withCompilerOptions),
@@ -151,7 +151,7 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
151
151
// Pickling tests are very memory intensive and as such need to be run with a
152
152
// lower level of concurrency as to not kill their running VMs
153
153
154
- @ Test def picklingWithCompiler : Unit = if ( ! scala.util. Properties .isWin) {
154
+ @ Test def picklingWithCompiler : Unit = {
155
155
val jvmBackendFilter = FileFilter .exclude(List (" BTypes.scala" , " Primitives.scala" )) // TODO
156
156
implicit val testGroup : TestGroup = TestGroup (" testPicklingWithCompiler" )
157
157
aggregateTests(
0 commit comments