diff options
author | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-01-27 08:09:48 +0000 |
---|---|---|
committer | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-01-27 08:09:48 +0000 |
commit | b33d5a2af7c63bc41ecc509233252bd12c048768 (patch) | |
tree | c087c32a72ffb07cc4102d76cce05adb9e6166a8 /tests/integration_tests.xml | |
parent | 52a993d1fbec28b8c422d3126ab801b3c7de156f (diff) | |
download | vaadin-framework-b33d5a2af7c63bc41ecc509233252bd12c048768.tar.gz vaadin-framework-b33d5a2af7c63bc41ecc509233252bd12c048768.zip |
yet another try for #6270
svn changeset:17045/svn branch:6.5
Diffstat (limited to 'tests/integration_tests.xml')
-rw-r--r-- | tests/integration_tests.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/integration_tests.xml b/tests/integration_tests.xml index 06ac4ceaea..5d9da5583e 100644 --- a/tests/integration_tests.xml +++ b/tests/integration_tests.xml @@ -606,16 +606,16 @@ </target>
<target name="run-integration-test">
- <echo message="${line.separator}##teamcity[testStarted name='${target-server}' flowId='${target-server}']" />
+ <concat>##teamcity[testStarted name='${target-server}' flowId='${target-server}']</concat>
<trycatch property="tried">
<try>
<antcall target="integration-test-${target-server}" />
</try>
<catch>
- <echo message="${line.separator}##teamcity[testFailed name='${target-server}' flowId='${target-server}' message='Integration test for ${target-server} failed.' details='${tried}']" />
+ <concat>##teamcity[testFailed name='${target-server}' flowId='${target-server}' message='Integration test for ${target-server} failed.' details='${tried}']"</concat>
</catch>
</trycatch>
- <echo message="${line.separator}##teamcity[testFinished name='${target-server}' flowId='${target-server}']" />
+ <concat>##teamcity[testFinished name='${target-server}' flowId='${target-server}']"</concat>
</target>
<target name="integration-test-get-lock">
|