Skip to content

Commit cf81bf2

Browse files
author
Sergey Nazarkin
committedFeb 20, 2025
Merge tag 'jdk8u452-b02'
2 parents 7311068 + 4c50940 commit cf81bf2

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed
 

‎jdk/test/jdk/jfr/event/oldobject/TestListenerLeak.java

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -74,15 +74,17 @@ public void onListen() {
7474

7575
public static void main(String[] args) throws Exception {
7676
WhiteBox.setWriteAllObjectSamples(true);
77-
78-
try (Recording r = new Recording()) {
79-
r.enable(EventNames.OldObjectSample).withStackTrace().with("cutoff", "infinity");
80-
r.start();
81-
listenerLeak();
82-
r.stop();
83-
List<RecordedEvent> events = Events.fromRecording(r);
84-
if (OldObjects.countMatchingEvents(events, Stuff[].class, null, null, -1, "listenerLeak") == 0) {
85-
throw new Exception("Could not find leak with " + Stuff[].class);
77+
while (true) {
78+
try (Recording r = new Recording()) {
79+
r.enable(EventNames.OldObjectSample).withStackTrace().with("cutoff", "infinity");
80+
r.start();
81+
listenerLeak();
82+
r.stop();
83+
List<RecordedEvent> events = Events.fromRecording(r);
84+
if (OldObjects.countMatchingEvents(events, Stuff[].class, null, null, -1, "listenerLeak") != 0) {
85+
return; // Success
86+
}
87+
System.out.println("Could not find leak with " + Stuff[].class + ". Retrying.");
8688
}
8789
}
8890
}

0 commit comments

Comments
 (0)
Please sign in to comment.