--- old/test/java/lang/Throwable/SuppressedExceptions.java 2011-04-08 11:06:13.000000000 -0700 +++ new/test/java/lang/Throwable/SuppressedExceptions.java 2011-04-08 11:06:13.000000000 -0700 @@ -193,6 +193,7 @@ // Make sure addSuppressed(null) throws an NPE try { t.addSuppressed(null); + throw new RuntimeException("NPE not thrown!"); } catch(NullPointerException e) { ; // Expected } @@ -204,7 +205,7 @@ private static class NoSuppression extends Throwable { public NoSuppression(boolean enableSuppression) { - super("The medium.", null, enableSuppression); + super("The medium.", null, enableSuppression, true); } } }