Skip to content

Commit 3d0c25d

Browse files
committed
Skip tests that cause container crash
1 parent fc2dd89 commit 3d0c25d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class FromTastyTests extends ParallelTesting {
2222
def testFilter = Properties.testsFilter
2323
def updateCheckFiles: Boolean = Properties.testsUpdateCheckfile
2424

25-
@Test def posTestFromTasty: Unit = {
25+
@Test def posTestFromTasty: Unit = if (!scala.util.Properties.isWin) {
2626
// Can be reproduced with
2727
// > sbt
2828
// > dotc -Ythrough-tasty -Ycheck:all <source>
@@ -33,7 +33,7 @@ class FromTastyTests extends ParallelTesting {
3333
).checkCompile()
3434
}
3535

36-
@Test def runTestFromTasty: Unit = {
36+
@Test def runTestFromTasty: Unit = if (!scala.util.Properties.isWin) {
3737
// Can be reproduced with
3838
// > sbt
3939
// > dotc -Ythrough-tasty -Ycheck:all <source>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class IdempotencyTests extends ParallelTesting {
2828
def updateCheckFiles: Boolean = Properties.testsUpdateCheckfile
2929

3030
@Category(Array(classOf[SlowTests]))
31-
@Test def idempotency: Unit = {
31+
@Test def idempotency: Unit = if (!scala.util.Properties.isWin) {
3232
implicit val testGroup: TestGroup = TestGroup("idempotency")
3333
val opt = defaultOptions
3434

0 commit comments

Comments
 (0)