diff options
author | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-09-29 12:44:21 +0000 |
---|---|---|
committer | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-09-29 12:44:21 +0000 |
commit | c4b62e478ac9ab8f66c3ca4289619b0f9c8ee958 (patch) | |
tree | 3b4ca56faecf6f65e8cd308d8f0cdcdd822c2886 /tests/test.xml | |
parent | cceb9d3f2bf475037e6a40b591968ef80c4878b8 (diff) | |
download | vaadin-framework-c4b62e478ac9ab8f66c3ca4289619b0f9c8ee958.tar.gz vaadin-framework-c4b62e478ac9ab8f66c3ca4289619b0f9c8ee958.zip |
Restructure test source directories and packages #7385
svn changeset:21440/svn branch:6.7
Diffstat (limited to 'tests/test.xml')
-rw-r--r-- | tests/test.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test.xml b/tests/test.xml index 2b52c74af3..4addbf3b4a 100644 --- a/tests/test.xml +++ b/tests/test.xml @@ -42,10 +42,10 @@ <fileset dir="${com.vaadin.testbench.lib.dir}" includes="**/*.jar" /> </path> - <!-- fileset containing all tests to run --> + <!-- fileset containing all TestBench tests to run --> <fileset dir=".." id="html-test-files"> <include name="tests/**/**.html" /> - <include name="src/com/vaadin/tests/**/**.html" /> + <include name="testbench/com/vaadin/tests/**/**.html" /> <exclude name="tests/integration-testscripts/**" /> </fileset> @@ -76,7 +76,7 @@ <!-- ================================================================== --> - <!-- Toolkit Server Management --> + <!-- Vaadin Server Management --> <!-- ================================================================== --> <target name="server-start"> @@ -90,7 +90,7 @@ <echo>Testing area: ${testing.testarea}</echo> <exec executable="python" searchpath="true" dir=".." resultproperty="server.start.result"> - <arg value="build/testing/toolkit-server.py" /> + <arg value="build/testing/vaadin-server.py" /> <arg value="start" /> <arg value="${package.name}" /> <arg value="${package.filename}" /> @@ -105,7 +105,7 @@ <target name="server-stop"> <exec executable="python" dir=".." searchpath="true" resultproperty="server.stop.result"> - <arg value="build/testing/toolkit-server.py" /> + <arg value="build/testing/vaadin-server.py" /> <arg value="stop" /> </exec> </target> |