You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by tr...@apache.org on 2015/07/08 21:05:24 UTC

svn commit: r1689938 - /jackrabbit/oak/branches/1.2/oak-auth-ldap/pom.xml

Author: tripod
Date: Wed Jul  8 19:05:24 2015
New Revision: 1689938

URL: http://svn.apache.org/r1689938
Log:
OAK-3026 test failures for oak-auth-ldap on Windows

- adding new test to exclusion list

Modified:
    jackrabbit/oak/branches/1.2/oak-auth-ldap/pom.xml

Modified: jackrabbit/oak/branches/1.2/oak-auth-ldap/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.2/oak-auth-ldap/pom.xml?rev=1689938&r1=1689937&r2=1689938&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.2/oak-auth-ldap/pom.xml (original)
+++ jackrabbit/oak/branches/1.2/oak-auth-ldap/pom.xml Wed Jul  8 19:05:24 2015
@@ -78,6 +78,32 @@
             <activation>
                 <!-- for JDK 1.6 (OAK-2903) -->
                 <jdk>1.6</jdk>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <excludes>
+                                <exclude>**/LdapProviderTest.class</exclude>
+                                <exclude>**/DefaultLdapLoginModuleTest.class</exclude>
+                                <exclude>**/GuestTokenDefaultLdapLoginModuleTest.class</exclude>
+                                <exclude>**/LdapDefaultLoginModuleTest.class</exclude>
+                                <exclude>**/LdapLoginStandaloneTest.class</exclude>
+                                <exclude>**/TokenDefaultLdapLoginModuleTest.class</exclude>
+                                <exclude>**/LargeLdapProviderTest.class</exclude>
+                            </excludes>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        
+        <profile>
+            <!-- Disable LDAP Server Integrations Tests on windows -->
+            <id>disable-ldap-integration-windows</id>
+            <activation>
                 <!-- temporarily disable on windows: OAK-2904 -->
                 <os>
                     <family>Windows</family>
@@ -96,6 +122,7 @@
                                 <exclude>**/LdapDefaultLoginModuleTest.class</exclude>
                                 <exclude>**/LdapLoginStandaloneTest.class</exclude>
                                 <exclude>**/TokenDefaultLdapLoginModuleTest.class</exclude>
+                                <exclude>**/LargeLdapProviderTest.class</exclude>
                             </excludes>
                         </configuration>
                     </plugin>