Skip to content

Commit 2e386db

Browse files
committed
[GR-60370] Disable assertions for code coverage ctw job
PullRequest: graal/19569
2 parents 064d2fc + 76a4749 commit 2e386db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/ci/ci_common/gate.jsonnet

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@
9393

9494
coverage_base(ctw):: s.base(tags="build,%s" % if ctw then "ctw" else "coverage",
9595
cmd_suffix=s.jacoco_gate_args,
96-
extra_vm_args=if !ctw then "" else "-DCompileTheWorld.MaxClasses=5000 -Djdk.graal.CompilationFailureAction=Print" /*GR-23372 for MaxClasses*/) +
96+
# Leaving assertions enabled slows down ctw enough to cause timeouts, and libgraal does not include assertions anyway.
97+
extra_vm_args=if !ctw then "" else "-da -DCompileTheWorld.MaxClasses=5000 -Djdk.graal.CompilationFailureAction=Print" /*GR-23372 for MaxClasses*/) +
9798
{
9899
teardown+: [
99100
s.upload_coverage,

0 commit comments

Comments
 (0)