Skip to content

Commit 497efef

Browse files
committedJan 3, 2021
8225116: Test OwnedWindowsLeak.java intermittently fails
Reviewed-by: pbansal
1 parent f5ee356 commit 497efef

File tree

1 file changed

+14
-22
lines changed

1 file changed

+14
-22
lines changed
 

‎test/jdk/java/awt/Window/OwnedWindowsLeak/OwnedWindowsLeak.java

+14-22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2020, 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
@@ -39,7 +39,7 @@
3939

4040
public class OwnedWindowsLeak
4141
{
42-
public static void main(String[] args)
42+
public static void main(String[] args) throws Exception
4343
{
4444
Frame owner = new Frame("F");
4545

@@ -49,6 +49,7 @@ public static void main(String[] args)
4949
for (int i = 0; i < 1000; i++)
5050
{
5151
Window child = new Window(owner);
52+
child.setName("window_" + i);
5253
children.add(new WeakReference<Window>(child));
5354
}
5455

@@ -70,31 +71,22 @@ public static void main(String[] args)
7071
// Third, make sure all the weak references are null
7172
for (WeakReference<Window> ref : children)
7273
{
73-
if (ref.get() != null)
74-
{
75-
throw new RuntimeException("Test FAILED: some of child windows are not GCed");
74+
while (ref.get() != null) {
75+
System.out.println("ref.get() = " + ref.get());
76+
System.gc();
77+
Thread.sleep(1000);
7678
}
7779
}
7880

7981
// Fourth, make sure owner's children list contains no elements
80-
try
81-
{
82-
Field f = Window.class.getDeclaredField("ownedWindowList");
83-
f.setAccessible(true);
84-
Vector ownersChildren = (Vector)f.get(owner);
85-
if (ownersChildren.size() > 0)
86-
{
87-
throw new RuntimeException("Test FAILED: some of the child windows are not removed from owner's children list");
88-
}
89-
}
90-
catch (NoSuchFieldException z)
91-
{
92-
System.out.println("Test PASSED: no 'ownedWindowList' field in Window class");
93-
return;
94-
}
95-
catch (Exception z)
82+
Field f = Window.class.getDeclaredField("ownedWindowList");
83+
f.setAccessible(true);
84+
Vector ownersChildren = (Vector)f.get(owner);
85+
while (ownersChildren.size() > 0)
9686
{
97-
throw new RuntimeException("Test FAILED: unexpected exception", z);
87+
System.out.println("ownersChildren = " + ownersChildren);
88+
System.gc();
89+
Thread.sleep(1000);
9890
}
9991

10092
// Test passed

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jan 3, 2021

@openjdk-notifier[bot]
Please sign in to comment.