Skip to content

Commit

Permalink
[GR-60370] Disable assertions for code coverage ctw job
Browse files Browse the repository at this point in the history
PullRequest: graal/19569
  • Loading branch information
c-refice committed Dec 11, 2024
2 parents 064d2fc + 76a4749 commit 2e386db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion compiler/ci/ci_common/gate.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@

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

0 comments on commit 2e386db

Please sign in to comment.