From b68dcd9df5e1e23137b6ca35ffd6c4010235e1e6 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Thu, 23 Apr 2015 21:09:42 +0000 Subject: [PATCH] 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 --- src/integrationtest/org/apache/poi/TestAllFiles.java | 3 +++ 1 file changed, 3 insertions(+) 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); } } -- 2.39.5