--- old/test/jdk/com/sun/jdi/EarlyReturnNegativeTest.java 2018-03-01 21:23:46.619783308 -0800 +++ new/test/jdk/com/sun/jdi/EarlyReturnNegativeTest.java 2018-03-01 21:23:46.383781192 -0800 @@ -77,8 +77,9 @@ public static ClassLoader classLoaderValue; { try { - urls[0] = new URL("hi there"); - } catch (java.net.MalformedURLException ee) { + urls[0] = new URL("file:/foo"); + } catch (java.net.MalformedURLException ex) { + throw new AssertionError(ex); } classLoaderValue = new URLClassLoader(urls); }