8369949: Fix TestWaste.java stack overflow

Reviewed-by: egahlin, shade
This commit is contained in:
Kerem Kat 2025-11-10 17:38:25 +00:00 committed by Cesar Soares Lucas
parent 0bae56b614
commit 1327aa6090
2 changed files with 1 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class EdgeQueue;
class DFSClosure : public BasicOopIterateClosure {
private:
// max dfs depth should not exceed size of stack
static const size_t max_dfs_depth = 4000;
static const size_t max_dfs_depth = 3200;
static UnifiedOopRef _reference_stack[max_dfs_depth];
EdgeStore* _edge_store;

View File

@ -751,7 +751,6 @@ jdk/jfr/event/compiler/TestCodeSweeper.java 8338127 generic-
jdk/jfr/event/oldobject/TestEmergencyDumpAtOOM.java 8371014 aix-ppc64,linux-ppc64le
jdk/jfr/event/oldobject/TestShenandoah.java 8342951 generic-all
jdk/jfr/event/runtime/TestResidentSetSizeEvent.java 8309846 aix-ppc64
jdk/jfr/jvm/TestWaste.java 8369949 generic-all
############################################################################