You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2015/03/24 13:18:30 UTC

[3/3] directory-fortress-core git commit: FC-83 - Cleanup core test processing

FC-83 - Cleanup core test processing


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/037bf91a
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/037bf91a
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/037bf91a

Branch: refs/heads/master
Commit: 037bf91ae83760bb9decfaa46099272d69b06837
Parents: 0998257
Author: Shawn McKinney <sm...@apache.org>
Authored: Tue Mar 24 07:18:16 2015 -0500
Committer: Shawn McKinney <sm...@apache.org>
Committed: Tue Mar 24 07:18:16 2015 -0500

----------------------------------------------------------------------
 pom.xml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/037bf91a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c561648..facc2e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -451,6 +451,16 @@
             <systemPropertyVariables>
               <version>${project.version}</version>
             </systemPropertyVariables>
+            <testFailureIgnore>true</testFailureIgnore>
+            <excludes>
+              <exclude>${exclude.tests}</exclude>
+            </excludes>
+            <includes>
+              <include>${include.tests}</include>
+            </includes>
+            <groups>${testcase.groups}</groups>
+            <forkMode>never</forkMode>
+            <runOrder>random</runOrder>
           </configuration>
         </plugin>
 
@@ -762,6 +772,23 @@
     </profile>
 
     <profile>
+      <id>stable-tests</id>
+      <properties>
+        <exclude.tests>**/accelerator/**/*.java</exclude.tests>
+        <include.tests>**/rbac/**/*.java</include.tests>
+        <testcase.groups>org.apache.directory.fortress.core.DefaultTestCase</testcase.groups>
+      </properties>
+    </profile>
+    <profile>
+      <id>unstable-tests</id>
+      <properties>
+        <exclude.tests>**/accelerator/**/*.java</exclude.tests>
+        <include.tests>**/rbac/**/*.java</include.tests>
+        <testcase.groups>org.apache.directory.fortress.core.DefaultTestCase</testcase.groups>
+      </properties>
+    </profile>
+    
+    <profile>
       <id>apache-release</id>
       <build>
         <plugins>