diff options
author | Mikael Vappula <mikael@vaadin.com> | 2011-12-05 13:33:50 +0200 |
---|---|---|
committer | Mikael Vappula <mikael@vaadin.com> | 2011-12-05 13:33:50 +0200 |
commit | 0d5878f6406c02efe3da2371c2482beee14aef72 (patch) | |
tree | 0c7036cd9c05debc5d5571dc90d76e632f48eafe /tests/test.xml | |
parent | 98ec1415dcfcf5a2d5654998fc2334c943bdb6e6 (diff) | |
download | vaadin-framework-0d5878f6406c02efe3da2371c2482beee14aef72.tar.gz vaadin-framework-0d5878f6406c02efe3da2371c2482beee14aef72.zip |
Pass deps.initialized to called test targets in different build files.
Diffstat (limited to 'tests/test.xml')
-rw-r--r-- | tests/test.xml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test.xml b/tests/test.xml index 5ea9547fa4..6b5e27bebf 100644 --- a/tests/test.xml +++ b/tests/test.xml @@ -5,8 +5,6 @@ <!-- Import common targets --> <import file="../build/common.xml" /> - <!-- Import targets for server management --> - <import file="vaadin-server.xml" as="server"/> <!-- ================================================================== --> <!-- Configuration --> @@ -56,7 +54,7 @@ </fileset> <!-- This target converts HTML tests files to java junit tests. One test file for each browser is created. --> - <target name="create-tests" depends="remove-temp-testclasses"> + <target name="create-tests" depends="initialize, remove-temp-testclasses"> <pathconvert pathsep=" " property="testfiles" refid="html-test-files" /> <java classname="com.vaadin.testbench.util.TestConverter" classpathref="classpath" fork="true"> @@ -174,7 +172,7 @@ <ant antfile="vaadin-server.xml" inheritall="true" inheritrefs="true" target="deploy-and-start" /> </daemons> <sequential> - <antcall target="server.wait-for-startup" /> + <ant antfile="vaadin-server.xml" target="wait-for-startup" /> <antcall inheritall="true" inheritrefs="true" target="run-and-clean-up" /> <move file="${testing.testarea}/${package.name}/war.ec" todir="../build/result" failonerror="false" /> </sequential> |