1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
39
39
40
40
public class OwnedWindowsLeak
41
41
{
42
- public static void main (String [] args )
42
+ public static void main (String [] args ) throws Exception
43
43
{
44
44
Frame owner = new Frame ("F" );
45
45
@@ -49,6 +49,7 @@ public static void main(String[] args)
49
49
for (int i = 0 ; i < 1000 ; i ++)
50
50
{
51
51
Window child = new Window (owner );
52
+ child .setName ("window_" + i );
52
53
children .add (new WeakReference <Window >(child ));
53
54
}
54
55
@@ -70,31 +71,22 @@ public static void main(String[] args)
70
71
// Third, make sure all the weak references are null
71
72
for (WeakReference <Window > ref : children )
72
73
{
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 );
76
78
}
77
79
}
78
80
79
81
// 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 )
96
86
{
97
- throw new RuntimeException ("Test FAILED: unexpected exception" , z );
87
+ System .out .println ("ownersChildren = " + ownersChildren );
88
+ System .gc ();
89
+ Thread .sleep (1000 );
98
90
}
99
91
100
92
// Test passed
1 commit comments
openjdk-notifier[bot] commentedon Jan 3, 2021
Review
Issues