diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-03-17 10:53:42 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-03-17 10:53:42 +0000 |
commit | 6a0bc03ec8c9e1e86e53e9da7f88ed159fdfc186 (patch) | |
tree | daedf39e75ae95076e0ea9e4dca20eb6b01be203 /build | |
parent | 68ed046734b5feaa7ced33528c61fe1f1b3e878b (diff) | |
download | vaadin-framework-6a0bc03ec8c9e1e86e53e9da7f88ed159fdfc186.tar.gz vaadin-framework-6a0bc03ec8c9e1e86e53e9da7f88ed159fdfc186.zip |
#6644 Ensure all refs are inherited to parallel tasks
svn changeset:17822/svn branch:6.5
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/build.xml b/build/build.xml index 3261515218..66bac3d0da 100644 --- a/build/build.xml +++ b/build/build.xml @@ -1134,9 +1134,9 @@ <target name="tests" depends="compile-java, internal-package-war"> <!-- Run all different types of tests in parallel to decrease testing time --> <parallel threadcount="3"> - <antcall target="integration-tests"></antcall> - <antcall target="testbench-tests"></antcall> - <antcall target="server-side-tests"></antcall> + <antcall inheritrefs="true" inheritall="true" target="integration-tests"></antcall> + <antcall inheritrefs="true" inheritall="true" target="testbench-tests"></antcall> + <antcall inheritrefs="true" inheritall="true" target="server-side-tests"></antcall> </parallel> </target> |