Skip to content

Commit c71498a

Browse files
committed
Disable ApacheDSContainerTests on Windows
Closes gh-10084
1 parent 715f06c commit c71498a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ldap/src/integration-test/java/org/springframework/security/ldap/server/ApacheDSContainerTests.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
import java.util.List;
2626

2727
import org.junit.jupiter.api.Test;
28+
import org.junit.jupiter.api.condition.DisabledOnOs;
29+
import org.junit.jupiter.api.condition.OS;
2830
import org.junit.jupiter.api.io.TempDir;
2931

3032
import org.springframework.core.io.ClassPathResource;
@@ -117,6 +119,7 @@ public void startWithLdapOverSslWithoutCertificate() throws Exception {
117119
}
118120

119121
@Test
122+
@DisabledOnOs(OS.WINDOWS)
120123
public void startWithLdapOverSslWithWrongPassword() throws Exception {
121124
final ClassPathResource keyStoreResource = new ClassPathResource(
122125
"/org/springframework/security/ldap/server/spring.keystore");
@@ -150,6 +153,7 @@ public void startWithLdapOverSslWithWrongPassword() throws Exception {
150153
* @throws Exception
151154
*/
152155
@Test
156+
@DisabledOnOs(OS.WINDOWS)
153157
public void startWithLdapOverSsl() throws Exception {
154158

155159
final ClassPathResource keyStoreResource = new ClassPathResource(

0 commit comments

Comments
 (0)