You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2006/02/23 18:20:38 UTC

svn commit: r380162 - in /directory/trunks/apacheds: core-unit/pom.xml server-unit/pom.xml

Author: akarasulu
Date: Thu Feb 23 09:20:34 2006
New Revision: 380162

URL: http://svn.apache.org/viewcvs?rev=380162&view=rev
Log:
changed regressions switch for running integration tests to integration ... so now to run the integration tests just do a "mvn -Dintegration test"

Modified:
    directory/trunks/apacheds/core-unit/pom.xml
    directory/trunks/apacheds/server-unit/pom.xml

Modified: directory/trunks/apacheds/core-unit/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/core-unit/pom.xml?rev=380162&r1=380161&r2=380162&view=diff
==============================================================================
--- directory/trunks/apacheds/core-unit/pom.xml (original)
+++ directory/trunks/apacheds/core-unit/pom.xml Thu Feb 23 09:20:34 2006
@@ -38,7 +38,7 @@
   </dependencies>
   <profiles>
     <profile>
-    <id>no-regression-tests</id>
+    <id>no-integration-tests</id>
     <activation>
       <activeByDefault>true</activeByDefault>
     </activation>
@@ -49,11 +49,11 @@
           <configuration>
             <excludes>
               <!-- TODO
-                Need to rename all regression tests to have Regression
+                Need to rename all integration tests to have Integration
                 in the name of the test so we can change the exclude below
                 to only refer to these tests rather than all tests like so:
                 
-                <exclude>**/*Regression*Test*</exclude>
+                <exclude>**/*Integration*Test*</exclude>
                 -->
               <exclude>**/*Test.java</exclude>
             </excludes>
@@ -71,8 +71,8 @@
                           W A R N I N G
                           -------------
                   
-Regression tests have been disabled.  To enable regression tests
-run maven with the -Dregressions switch or -P regressions switch.
+Integration tests have been disabled.  To enable integration
+tests run maven with the -Dinstegration.
 =================================================================
                     </echo>
                   </tasks>
@@ -87,9 +87,9 @@
       </build>
     </profile>
     <profile>
-      <id>regressions</id>
+      <id>integration</id>
       <activation>
-        <property><name>regressions</name></property>
+        <property><name>integration</name></property>
       </activation>
     </profile>
   </profiles>

Modified: directory/trunks/apacheds/server-unit/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/server-unit/pom.xml?rev=380162&r1=380161&r2=380162&view=diff
==============================================================================
--- directory/trunks/apacheds/server-unit/pom.xml (original)
+++ directory/trunks/apacheds/server-unit/pom.xml Thu Feb 23 09:20:34 2006
@@ -52,7 +52,7 @@
 
   <profiles>
     <profile>
-      <id>no-regression-tests</id>
+      <id>no-integration-tests</id>
       <activation>
         <activeByDefault>true</activeByDefault>
       </activation>
@@ -63,11 +63,11 @@
               <configuration>
                 <excludes>
                   <!-- TODO
-                     Need to rename all regression tests to have Regression
+                     Need to rename all integration tests to have Integration
                      in the name of the test so we can change the exclude below
                      to only refer to these tests rather than all tests like so:
                 
-                     <exclude>**/*Regression*Test*</exclude>
+                     <exclude>**/*Integration*Test*</exclude>
                    -->
                   <exclude>**/*Test.java</exclude>
                 </excludes>
@@ -85,8 +85,8 @@
                           W A R N I N G
                           -------------
                   
-Regression tests have been disabled.  To enable regression tests
-run maven with the -Dregressions switch or -P regressions switch.
+Integration tests have been disabled.  To enable integration 
+tests run maven with the -Dintegration switch.
 =================================================================
                       </echo>
                     </tasks>
@@ -101,9 +101,9 @@
        </build>
     </profile>
     <profile>
-      <id>regressions</id>
+      <id>integration</id>
       <activation>
-        <property><name>regressions</name></property>
+        <property><name>integration</name></property>
       </activation>
     </profile>
   </profiles>