--- old/test/tools/javap/T6868539.java 2016-01-15 13:30:58.623344044 +0300 +++ new/test/tools/javap/T6868539.java 2016-01-15 13:30:58.547344428 +0300 @@ -58,10 +58,12 @@ throw new Error(errors + " found."); } + String notFound = " not found"; + void verify(String output, String... expects) { for (String expect: expects) { if (!output.matches("(?s).*" + expect + ".*")) - error(expect + " not found"); + error(expect + notFound); } }