Author: thomas.diesler(a)jboss.com
Date: 2007-08-03 05:32:46 -0400 (Fri, 03 Aug 2007)
New Revision: 4142
Modified:
trunk/build/ant-import/build-testsuite.xml
trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.0/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-4.2/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-4.2/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml
Log:
Add tests-integration target
Modified: trunk/build/ant-import/build-testsuite.xml
===================================================================
--- trunk/build/ant-import/build-testsuite.xml 2007-08-03 09:24:35 UTC (rev 4141)
+++ trunk/build/ant-import/build-testsuite.xml 2007-08-03 09:32:46 UTC (rev 4142)
@@ -375,8 +375,8 @@
<antcall target="tests-report"/>
</target>
- <!-- Run samples test cases -->
- <target name="tests-smoke" depends="tests-init"
description="Run samples unit tests">
+ <!-- Run smoke test cases -->
+ <target name="tests-smoke" depends="tests-init"
description="Run smoke unit tests">
<antcall target="tests-run-internal">
<param name="include.wildcard"
value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class
org/jboss/test/ws/*/smoke/**/*TestCase.class"/>
<param name="exclude.wildcard"
value="org/jboss/test/ws/*/samples/jaxr/**"/>
@@ -397,6 +397,16 @@
</antcall>
</target>
+ <!-- Run integration test cases -->
+ <target name="tests-integration" depends="tests-jars"
description="Run integration unit tests">
+ <antcall target="tests-run-internal">
+ <param name="include.wildcard"
value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class
org/jboss/test/ws/*/smoke/**/*TestCase.class"/>
+ <param name="exclude.wildcard"
value="org/jboss/test/ws/*/samples/jaxr/**"/>
+ <param name="haltonfailure" value="false"/>
+ </antcall>
+ <antcall target="tests-report"/>
+ </target>
+
<!--
Run a collection of unit tests.
ant -Dtest=jaxws/samples/provider test
Modified: trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.0/config.xml 2007-08-03
09:24:35 UTC (rev 4141)
+++ trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.0/config.xml 2007-08-03
09:32:46 UTC (rev 4142)
@@ -48,7 +48,7 @@
#
# execute tests
#
-./build.sh $ENVIRONMENT tests-clean tests-main tests-smoke 2>&1 | tee
$WORKSPACE/tests.out
+./build.sh $ENVIRONMENT tests-clean tests-integration 2>&1 | tee
$WORKSPACE/tests.out
cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml 2007-08-03
09:24:35 UTC (rev 4141)
+++ trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml 2007-08-03
09:32:46 UTC (rev 4142)
@@ -48,7 +48,7 @@
#
# execute tests
#
-./build.sh $ENVIRONMENT tests-clean tests-main tests-smoke 2>&1 | tee
$WORKSPACE/tests.out
+./build.sh $ENVIRONMENT tests-clean tests-integration 2>&1 | tee
$WORKSPACE/tests.out
cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml 2007-08-03
09:24:35 UTC (rev 4141)
+++ trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml 2007-08-03
09:32:46 UTC (rev 4142)
@@ -48,7 +48,7 @@
#
# execute tests
#
-./build.sh $ENVIRONMENT tests-clean tests-main tests-smoke 2>&1 | tee
$WORKSPACE/tests.out
+./build.sh $ENVIRONMENT tests-clean tests-integration 2>&1 | tee
$WORKSPACE/tests.out
cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-4.2/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-4.2/config.xml 2007-08-03
09:24:35 UTC (rev 4141)
+++ trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-4.2/config.xml 2007-08-03
09:32:46 UTC (rev 4142)
@@ -48,7 +48,7 @@
#
# execute tests
#
-./build.sh $ENVIRONMENT tests-clean tests-main tests-smoke 2>&1 | tee
$WORKSPACE/tests.out
+./build.sh $ENVIRONMENT tests-clean tests-integration 2>&1 | tee
$WORKSPACE/tests.out
cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml 2007-08-03
09:24:35 UTC (rev 4141)
+++ trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml 2007-08-03
09:32:46 UTC (rev 4142)
@@ -48,7 +48,7 @@
#
# execute tests
#
-./build.sh $ENVIRONMENT tests-clean tests-main tests-smoke 2>&1 | tee
$WORKSPACE/tests.out
+./build.sh $ENVIRONMENT tests-clean tests-integration 2>&1 | tee
$WORKSPACE/tests.out
cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-4.2/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-4.2/config.xml 2007-08-03
09:24:35 UTC (rev 4141)
+++ trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-4.2/config.xml 2007-08-03
09:32:46 UTC (rev 4142)
@@ -48,7 +48,7 @@
#
# execute tests
#
-./build.sh $ENVIRONMENT tests-clean tests-main tests-smoke 2>&1 | tee
$WORKSPACE/tests.out
+./build.sh $ENVIRONMENT tests-clean tests-integration 2>&1 | tee
$WORKSPACE/tests.out
cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml 2007-08-03
09:24:35 UTC (rev 4141)
+++ trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml 2007-08-03
09:32:46 UTC (rev 4142)
@@ -48,7 +48,7 @@
#
# execute tests
#
-./build.sh $ENVIRONMENT tests-clean tests-main tests-smoke 2>&1 | tee
$WORKSPACE/tests.out
+./build.sh $ENVIRONMENT tests-clean tests-integration 2>&1 | tee
$WORKSPACE/tests.out
cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
#
Show replies by date