On Tue, 19 Apr 2022 09:10:30 GMT, Prasanta Sadhukhan <psadhuk...@openjdk.org> 
wrote:

> Few swing tests call System.exit() which might stop the test harness from 
> executing further tests if any of the test fail. We should replace with 
> RuntimeException.

test/jdk/javax/swing/JComboBox/8019180/Test8019180.java line 66:

> 64:             }
> 65:             SwingUtilities.getWindowAncestor(this.test).dispose();
> 66:             LATCH.countDown();

Looks like that before the fix all tests had graceful shutdown in standalone 
mode.

Now there are hanging open windows when they fails.
e.g. those two lines could be wrapped in `finally` block for graceful test 
finish.

-------------

PR: https://git.openjdk.java.net/jdk/pull/8293

Reply via email to