Author: kiwiwings
Date: Tue Feb 22 20:21:07 2022
New Revision: 1898330

URL: http://svn.apache.org/viewvc?rev=1898330&view=rev
Log:
exclude files failing on windows nodes, because of limited JCE policies

Modified:
    
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java

Modified: 
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java?rev=1898330&r1=1898329&r2=1898330&view=diff
==============================================================================
--- 
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java 
(original)
+++ 
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java 
Tue Feb 22 20:21:07 2022
@@ -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(



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to