diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2022-02-22 20:21:07 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2022-02-22 20:21:07 +0000 |
commit | 4edfc5155b80eef9172d8195bbf51c58644a960e (patch) | |
tree | 35efaa2d59131fbced0e558e2d88e998daf09616 /poi-integration/src | |
parent | 63f2572c622ea694018ac5e437bc61252cc091ad (diff) | |
download | poi-4edfc5155b80eef9172d8195bbf51c58644a960e.tar.gz poi-4edfc5155b80eef9172d8195bbf51c58644a960e.zip |
exclude files failing on windows nodes, because of limited JCE policies
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898330 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-integration/src')
-rw-r--r-- | poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java b/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java index 4d1df65116..30bbe4b264 100644 --- a/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java +++ b/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java @@ -77,7 +77,15 @@ public class TestAllFiles { "**/.svn/**", "lost+found", "**/.git/**", - "**/ExternalEntityInText.docx", //the DocType (DTD) declaration causes this to fail + //the DocType (DTD) declaration causes this to fail + "**/ExternalEntityInText.docx", + + // exclude files failing on windows nodes, because of limited JCE policies + "document/bug53475-password-is-pass.docx", + "poifs/60320-protected.xlsx", + "poifs/protected_sha512.xlsx", + "poifs/60320-protected.xlsx", + "poifs/protected_sha512.xlsx", }; // cheap workaround of skipping the few problematic files @@ -101,6 +109,13 @@ public class TestAllFiles { "spreadsheet/testEXCEL_3.xls", "spreadsheet/testEXCEL_4.xls", "poifs/unknown_properties.msg", + + // exclude files failing on windows nodes, because of limited JCE policies + "document/bug53475-password-is-pass.docx", + "poifs/60320-protected.xlsx", + "poifs/protected_sha512.xlsx", + "poifs/60320-protected.xlsx", + "poifs/protected_sha512.xlsx", }; private static final Set<String> EXPECTED_FAILURES = StressTestUtils.unmodifiableHashSet( |