[seam-commits] Seam SVN: r11993 - in branches/community/Seam_2_2/src/test/ftest/examples: dvdstore and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Jan 26 10:56:44 EST 2010


Author: jharting
Date: 2010-01-26 10:56:44 -0500 (Tue, 26 Jan 2010)
New Revision: 11993

Modified:
   branches/community/Seam_2_2/src/test/ftest/examples/build.xml
   branches/community/Seam_2_2/src/test/ftest/examples/dvdstore/build.xml
Log:
minor

Modified: branches/community/Seam_2_2/src/test/ftest/examples/build.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/build.xml	2010-01-26 13:48:08 UTC (rev 11992)
+++ branches/community/Seam_2_2/src/test/ftest/examples/build.xml	2010-01-26 15:56:44 UTC (rev 11993)
@@ -186,7 +186,7 @@
 	</target>
 
 	<target name="deploy.example" depends="container.properties">
-		<property name="absolute.wait.url" value="${selenium.browser.url}${wait.url}" />
+		<property name="absolute.wait.url" value="${selenium.browser.url}${wait.url}${example.homepage}" />
 		<echo>Deploying ${example.name} example to ${container} using ${deploy.target} target</echo>
 		<ant antfile="${seam.dir}/examples/${example.name}/build.xml" target="${deploy.target}" inheritall="false" dir="${seam.dir}/examples/${example.name}">
 			<property name="jboss.home" value="${container.home}" />
@@ -196,7 +196,7 @@
 		<!-- wait for the application to be active -->
 		<!-- TODO is there a better way? -->
 		<echo>Waiting ${wait.time} seconds for ${absolute.wait.url}</echo>
-		<waitfor maxwait="${wait.time}" maxwaitunit="second">
+		<waitfor maxwait="${wait.time}" maxwaitunit="second" timeoutproperty="timeout">
 			<and>
 				<!-- wait for the application to not throw 404 -->
 				<http url="${absolute.wait.url}" errorsBeginAt="404" />

Modified: branches/community/Seam_2_2/src/test/ftest/examples/dvdstore/build.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/dvdstore/build.xml	2010-01-26 13:48:08 UTC (rev 11992)
+++ branches/community/Seam_2_2/src/test/ftest/examples/dvdstore/build.xml	2010-01-26 15:56:44 UTC (rev 11993)
@@ -22,6 +22,7 @@
 -->
 <project name="dvdstore.ftest.build" basedir="." default="build">
 	<property name="example.name" value="dvdstore" />
+	<property name="example.homepage" value="/home" />
 
 	<import file="../build.xml" />
 



More information about the seam-commits mailing list