File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
compiler/test/dotty/tools/dotc Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class FromTastyTests extends ParallelTesting {
22
22
def testFilter = Properties .testsFilter
23
23
def updateCheckFiles : Boolean = Properties .testsUpdateCheckfile
24
24
25
- @ Test def posTestFromTasty : Unit = {
25
+ @ Test def posTestFromTasty : Unit = if ( ! scala.util. Properties .isWin) {
26
26
// Can be reproduced with
27
27
// > sbt
28
28
// > dotc -Ythrough-tasty -Ycheck:all <source>
@@ -33,7 +33,7 @@ class FromTastyTests extends ParallelTesting {
33
33
).checkCompile()
34
34
}
35
35
36
- @ Test def runTestFromTasty : Unit = {
36
+ @ Test def runTestFromTasty : Unit = if ( ! scala.util. Properties .isWin) {
37
37
// Can be reproduced with
38
38
// > sbt
39
39
// > dotc -Ythrough-tasty -Ycheck:all <source>
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class IdempotencyTests extends ParallelTesting {
28
28
def updateCheckFiles : Boolean = Properties .testsUpdateCheckfile
29
29
30
30
@ Category (Array (classOf [SlowTests ]))
31
- @ Test def idempotency : Unit = {
31
+ @ Test def idempotency : Unit = if ( ! scala.util. Properties .isWin) {
32
32
implicit val testGroup : TestGroup = TestGroup (" idempotency" )
33
33
val opt = defaultOptions
34
34
You can’t perform that action at this time.
0 commit comments