diff --git a/releng.wtpbuilder/distribution/dali.tests/testScripts/test.xml b/releng.wtpbuilder/distribution/dali.tests/testScripts/test.xml index 3c1933db8a493ea7e480cfe9d877c04d49c5fe25..f41d4d0a95d88d62cf5d019ca37f5076888714cd 100644 --- a/releng.wtpbuilder/distribution/dali.tests/testScripts/test.xml +++ b/releng.wtpbuilder/distribution/dali.tests/testScripts/test.xml @@ -92,9 +92,40 @@ <antcall target="genHtml" /> </target> + + <!-- Dali tests --> <target - name="dali-tests" - depends="init"> + name="jpt-utility-tests" + depends="init" + description="Runs the org.eclipse.jpt.utility.tests test.xml"> + <antcall + target="runtests"> + <param + name="testPlugin" + value="${org.eclipse.jpt.utility.tests}"/> + <param + name="report" + value="org.eclipse.jpt.utility.tests"/> + </antcall> + </target> + <target + name="jpt-core-tests" + depends="init" + description="Runs the org.eclipse.jpt.core.tests test.xml"> + <antcall + target="runtests"> + <param + name="testPlugin" + value="${org.eclipse.jpt.core.tests}"/> + <param + name="report" + value="org.eclipse.jpt.core.tests"/> + </antcall> + </target> + <target + name="jpt-eclipselink-core-tests" + depends="init" + description="Runs the org.eclipse.jpt.eclipselink.core.tests test.xml"> <antcall target="runtests"> <param @@ -140,7 +171,12 @@ level="info" message="Starting dali-tests" /> <antcall - target="dali-tests" /> + target="jpt-utility-tests" /> + <antcall + target="jpt-core-tests" /> + <antcall + target="jpt-eclipselink-core-tests" /> + <echo level="info" message="Ended Unit Tests" />