From: Nick Burch Date: Thu, 23 Apr 2015 21:09:42 +0000 (+0000) Subject: Add another file exclude, and hae the test print out which fails failed to make it... X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b68dcd9df5e1e23137b6ca35ffd6c4010235e1e6;p=poi.git Add another file exclude, and hae the test print out which fails failed to make it quicker to spot in the jenkins failure email git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675719 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/integrationtest/org/apache/poi/TestAllFiles.java b/src/integrationtest/org/apache/poi/TestAllFiles.java index 8a66024f7b..701e504e1b 100644 --- a/src/integrationtest/org/apache/poi/TestAllFiles.java +++ b/src/integrationtest/org/apache/poi/TestAllFiles.java @@ -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); } }