[jboss-cvs] JBoss Messaging SVN: r1603 - branches/Branch_HTTP_Experiment/tests/smoke
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Nov 21 00:18:48 EST 2006
Author: ron_sigal
Date: 2006-11-21 00:18:47 -0500 (Tue, 21 Nov 2006)
New Revision: 1603
Modified:
branches/Branch_HTTP_Experiment/tests/smoke/build.xml
Log:
JBMESSAGING-207: Added http test, disabled stateless test.
Modified: branches/Branch_HTTP_Experiment/tests/smoke/build.xml
===================================================================
--- branches/Branch_HTTP_Experiment/tests/smoke/build.xml 2006-11-21 05:09:53 UTC (rev 1602)
+++ branches/Branch_HTTP_Experiment/tests/smoke/build.xml 2006-11-21 05:18:47 UTC (rev 1603)
@@ -26,11 +26,12 @@
<property name="run.queue.example" value="true"/>
<property name="run.topic.example" value="true"/>
<property name="run.mdb.example" value="true"/>
- <property name="run.stateless.example" value="true"/>
+ <property name="run.http.example" value="true"/>
+ <property name="run.stateless.example" value="false"/>
<property name="run.ejb3mdb.example" value="false"/>
<property name="run.secure-socket.example" value="true"/>
<property name="run.distributed-topic.example" value="true"/>
-
+
<property name="jboss.home" value="${jboss.compatibility.home}"/>
<path id="twiddle.classpath">
@@ -129,6 +130,22 @@
<param name="run.stateless.example" value="false"/>
<param name="run.secure-socket.example" value="false"/>
</antcall>
+ -->
+ <antcall target="installation-test">
+ <param name="jboss.home" value="${jboss405GA.home}"/>
+ </antcall>
+
+ <antcall target="installation-test">
+ <param name="jboss.home" value="${jboss405GA-installer.home}"/>
+ </antcall>
+
+ <antcall target="installation-test">
+ <param name="jboss.home" value="${jboss405GA.home}"/>
+ <param name="release.admin.target" value="standalone"/>
+ <param name="run.mdb.example" value="false"/>
+ <param name="run.stateless.example" value="false"/>
+ <param name="run.secure-socket.example" value="false"/>
+ </antcall>
<!--
<antcall target="installation-test">
<param name="jboss.home" value="${jboss405CR1.home}"/>
@@ -306,6 +323,12 @@
<param name="example.queue.name" value="SmokeTestQueue"/>
<param name="jboss.home" value="${jboss.home}"/>
</antcall>
+
+ <antcall target="run-example">
+ <param name="example.name" value="http"/>
+ <param name="example.queue.name" value="SmokeTestQueue"/>
+ <param name="jboss.home" value="${jboss.home}"/>
+ </antcall>
<!-- ==================================================== -->
<!-- -->
@@ -447,6 +470,10 @@
<equals arg1="${example.name}" arg2="secure-socket"/>
<istrue value="${run.secure-socket.example}"/>
</and>
+ <and>
+ <equals arg1="${example.name}" arg2="http"/>
+ <istrue value="${run.http.example}"/>
+ </and>
</or>
</condition>
<antcall target="run-example-internal"/>
More information about the jboss-cvs-commits
mailing list