We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fafc5d commit aad0315Copy full SHA for aad0315
test/jdk/jdk/jfr/event/gc/stacktrace/AllocationStackTrace.java
@@ -81,15 +81,15 @@ public void allocate() {
81
class OldGenMemoryAllocator extends MemoryAllocator {
82
83
private List<byte[]> list = new ArrayList<byte[]>();
84
- private int counter = 6000;
+ private int counter = 5000;
85
86
@Override
87
public void allocate() {
88
if (counter-- > 0) {
89
list.add(new byte[10 * KB]);
90
} else {
91
list = new ArrayList<byte[]>();
92
- counter = 6000;
+ counter = 5000;
93
}
94
95
garbage = list;
0 commit comments