Browse Source

disable test on java 19

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903067 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_3
PJ Fanning 1 year ago
parent
commit
56fe91998a
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      poi/src/test/java/org/apache/poi/poifs/dev/TestPOIFSDump.java

+ 2
- 1
poi/src/test/java/org/apache/poi/poifs/dev/TestPOIFSDump.java View File

@@ -168,7 +168,8 @@ public class TestPOIFSDump {
@Test
@SuppressForbidden("tests java.security features deprecated in java 17 - no other option though")
void testMainNoArgs() {
Assumptions.assumeFalse(System.getProperty("java.version").startsWith("18"),
final String javaVersion = System.getProperty("java.version");
Assumptions.assumeFalse(javaVersion.startsWith("18") || javaVersion.startsWith("19") || javaVersion.startsWith("2"),
"SecurityManager does not work any more since JDK 18");

SecurityManager sm = System.getSecurityManager();

Loading…
Cancel
Save