--- old/test/hotspot/jtreg/runtime/exceptionMsgs/IncompatibleClassChangeError/IncompatibleClassChangeErrorTest.java 2018-02-27 10:50:55.818663000 +0100 +++ new/test/hotspot/jtreg/runtime/exceptionMsgs/IncompatibleClassChangeError/IncompatibleClassChangeErrorTest.java 2018-02-27 10:50:55.419630000 +0100 @@ -42,7 +42,7 @@ import compiler.whitebox.CompilerWhiteBoxTest; import java.lang.reflect.Method; -// This test assembles an errornous installation of classes. +// This test assembles an errorneous installation of classes. // First, compile the test by @compile. This results in a legal set // of classes. // Then, with jasm, generate incompatible classes that overwrite @@ -97,6 +97,7 @@ throw new RuntimeException("ICC_E." + method.getName() + " is not compiled"); } } catch (NoSuchMethodException e) { } + System.out.println("warmup done."); } // Should never be compiled. @@ -294,7 +295,7 @@ public void b(); } -// This is the errornous class. A variant of it not +// This is the errorneous class. A variant of it not // implementing ICC_iB is copied into the test before // it is run. class ICC_B implements ICC_iA