Index: test/functional/org/apache/harmony/test/func/api/java/util/jar/Manifest/ManifestTest.java =================================================================== --- test/functional/org/apache/harmony/test/func/api/java/util/jar/Manifest/ManifestTest.java (revision 554839) +++ test/functional/org/apache/harmony/test/func/api/java/util/jar/Manifest/ManifestTest.java (working copy) @@ -165,10 +165,10 @@ try { Manifest mf = new Manifest(new ByteArrayInputStream(s.getBytes())); } catch (IOException e) { - return failed("expected IOException in reference JVM though manifest is correct (bug in the reference VM)"); + return passed(); } - return passed(); + return failed("IOException is expected: \n\r is invalid due to Manifest Specification: http://java.sun.com/j2se/1.5.0/docs/api/index.html"); } public Result testConstructorInputStream() throws IOException {