]> source.dussan.org Git - poi.git/commitdiff
Add another file exclude, and hae the test print out which fails failed to make it...
authorNick Burch <nick@apache.org>
Thu, 23 Apr 2015 21:09:42 +0000 (21:09 +0000)
committerNick Burch <nick@apache.org>
Thu, 23 Apr 2015 21:09:42 +0000 (21:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675719 13f79535-47bb-0310-9956-ffa450edef68

src/integrationtest/org/apache/poi/TestAllFiles.java

index 8a66024f7ba073785c0c7494960be7fc2acc56bf..701e504e1beb07b163886541ff82e7131d6a3791 100644 (file)
@@ -234,6 +234,7 @@ public class TestAllFiles {
         EXPECTED_FAILURES.add("spreadsheet/testEXCEL_4.xls");
         EXPECTED_FAILURES.add("spreadsheet/testEXCEL_5.xls");
         EXPECTED_FAILURES.add("spreadsheet/testEXCEL_95.xls");
+        EXPECTED_FAILURES.add("poifs/unknown_properties.msg"); // POIFS properties corrupted
         
         // OOXML Strict is not yet supported, see bug #57699
         EXPECTED_FAILURES.add("spreadsheet/SampleSS.strict.xlsx");
@@ -296,12 +297,14 @@ public class TestAllFiles {
             } else {
                 // check if we expect failure for this file
                 if(!EXPECTED_FAILURES.contains(file) && !AbstractFileHandler.EXPECTED_EXTRACTOR_FAILURES.contains(file)) {
+                    System.out.println("Failed: " + file);
                     throw new Exception("While handling " + file, e);
                 }
             }
         } catch (Exception e) {
             // check if we expect failure for this file
             if(!EXPECTED_FAILURES.contains(file) && !AbstractFileHandler.EXPECTED_EXTRACTOR_FAILURES.contains(file)) {
+                System.out.println("Failed: " + file);
                 throw new Exception("While handling " + file, e);
             }
         }