Skip to content

Commit 4eb430d

Browse files
author
Andrija Kolic
committed
[GR-68602] Disable build assertions for spring-hello-world due to transient AssertionError
PullRequest: graal/21867
2 parents 970a111 + 9b52e9a commit 4eb430d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

substratevm/mx.substratevm/mx_substratevm_benchmark.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,9 @@ def build_assertions(self, benchmark: str, is_gate: bool) -> List[str]:
383383
# We cannot enable assertions along with emitting a build report for layered images, due to GR-65751
384384
if self.stages_info.current_stage.is_layered():
385385
return []
386+
# Disable assertions due to transient AssertionError when building spring-hello-world image (GR-59889)
387+
if benchmark == "spring-hello-world":
388+
return []
386389
return super().build_assertions(benchmark, is_gate)
387390

388391
def run(self, benchmarks, bmSuiteArgs) -> mx_benchmark.DataPoints:

0 commit comments

Comments
 (0)