From c82c892063ebb91ffeb853db2f325154465cfdff Mon Sep 17 00:00:00 2001 From: Erik Gahlin Date: Wed, 15 Oct 2025 00:58:34 +0000 Subject: [PATCH] 8282427: jdk/jfr/jvm/TestWaste.java is failing with "exit code 139" Reviewed-by: mgronlun --- src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp | 2 +- test/jdk/ProblemList.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp b/src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp index 5bdddc4fd68..4f96680fa6c 100644 --- a/src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp +++ b/src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp @@ -189,7 +189,7 @@ bool BFSClosure::is_complete() const { if (_edge_queue->bottom() > _next_frontier_idx) { // fallback onto DFS as part of processing the frontier assert(_dfs_fallback_idx >= _prev_frontier_idx, "invariant"); - assert(_dfs_fallback_idx < _next_frontier_idx, "invariant"); + assert(_dfs_fallback_idx <= _next_frontier_idx, "invariant"); log_dfs_fallback(); return true; } diff --git a/test/jdk/ProblemList.txt b/test/jdk/ProblemList.txt index 4799eb3bc0f..c305bc0bbeb 100644 --- a/test/jdk/ProblemList.txt +++ b/test/jdk/ProblemList.txt @@ -750,7 +750,6 @@ jdk/incubator/vector/LoadJsvmlTest.java 8305390 windows- jdk/jfr/event/compiler/TestCodeSweeper.java 8338127 generic-all jdk/jfr/event/oldobject/TestShenandoah.java 8342951 generic-all jdk/jfr/event/runtime/TestResidentSetSizeEvent.java 8309846 aix-ppc64 -jdk/jfr/jvm/TestWaste.java 8282427 generic-all ############################################################################