Skip to content

Commit

Permalink
Fail on first failure issue jai-imageio#5
Browse files Browse the repository at this point in the history
  • Loading branch information
stain committed Sep 12, 2014
1 parent db51d70 commit fc2ed69
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/test/java/com/sun/media/imageio/ConverterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ public void testname() throws Exception {
File f = File.createTempFile("imageio-test", "." + type);
ImageIO.write(img, type, f);
System.out.println(f);
try {
ImageIO.read(f);
} catch (Exception ex) {
System.err.println("Failed " + f + " " + ex.getLocalizedMessage());
}
ImageIO.read(f);
}
}

Expand Down

0 comments on commit fc2ed69

Please sign in to comment.