Skip to content

Commit 20f8308

Browse files
committed
Set file filter correctly
File filter only work for names not path.
1 parent 9e2e309 commit 20f8308

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class IdempotencyTests {
1818
import IdempotencyTests._
1919
import CompilationTest.aggregateTests
2020

21-
val filter = FileFilter.exclude(
22-
s"pos${JFile.separator}i6507b"
23-
)
21+
// Flaky test on Windows
22+
// https://github.com/lampepfl/dotty/issues/11885
23+
val filter = FileFilter.exclude("i6507b")
2424

2525
@Category(Array(classOf[SlowTests]))
2626
@Test def idempotency: Unit = {

0 commit comments

Comments
 (0)