Skip to content

Commit 8a3fc7a

Browse files
Temporarily disable parallel backend tests due to frequent timeouts (#19292)
Compilation tests run with `-Ybackend-parallelism:N` flag seem to be stuck when compiling probably due to deadlock or infinite loop. See https://github.com/lampepfl/dotty/actions/runs/7243042276/job/19729290631#step:9:2254 which failed to compile `tests/pos/reference/auto-param-tupling.scala` To be restored when underlying issue would be fixed
2 parents 69cc6b1 + e4985fc commit 8a3fc7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: compiler/test/dotty/tools/dotc/CompilationTests.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package dotc
44

55
import scala.language.unsafeNulls
66

7-
import org.junit.{ Test, BeforeClass, AfterClass }
7+
import org.junit.{ Test, BeforeClass, AfterClass, Ignore }
88
import org.junit.Assert._
99
import org.junit.Assume._
1010
import org.junit.experimental.categories.Category
@@ -250,6 +250,7 @@ class CompilationTests {
250250
}
251251

252252
// parallel backend tests
253+
@Ignore("Temporarily disabled due to frequent timeouts")
253254
@Test def parallelBackend: Unit = {
254255
given TestGroup = TestGroup("parallelBackend")
255256
val parallelism = Runtime.getRuntime().availableProcessors().min(16)

0 commit comments

Comments
 (0)