Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2010-11-12 18:01:09 +0000
committerkmoore2010-11-12 18:01:09 +0000
commit8ce6f613d8779993bf2186bb693b6094f7bb6a4c (patch)
treec7093e78de94445a26e6e13c9dc58c550e5ba4cc
parent6690bcbabf1695148c8e3cab9903447fbc3fe66a (diff)
downloadwebtools.dali-8ce6f613d8779993bf2186bb693b6094f7bb6a4c.tar.gz
webtools.dali-8ce6f613d8779993bf2186bb693b6094f7bb6a4c.tar.xz
webtools.dali-8ce6f613d8779993bf2186bb693b6094f7bb6a4c.zip
added jaxb context model tests to the build
-rw-r--r--jaxb/tests/org.eclipse.jpt.jaxb.core.tests/test.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/jaxb/tests/org.eclipse.jpt.jaxb.core.tests/test.xml b/jaxb/tests/org.eclipse.jpt.jaxb.core.tests/test.xml
index 94c580b2be..06df99e774 100644
--- a/jaxb/tests/org.eclipse.jpt.jaxb.core.tests/test.xml
+++ b/jaxb/tests/org.eclipse.jpt.jaxb.core.tests/test.xml
@@ -22,7 +22,7 @@
<!-- This target defines the tests that need to be run. -->
<target name="suite1"> <property file="${testRoot}/testServer.properties"/> <property name="jpt-folder" value="${eclipse-home}/jpt_folder"/> <delete dir="${jpt-folder}" quiet="true"/> <ant target="core-test" antfile="${library-file}" dir="${eclipse-home}"> <property name="data-dir" value="${jpt-folder}"/> <property name="plugin-name" value="${plugin-name}"/> <property name="classname" value="org.eclipse.jpt.jaxb.core.tests.internal.resource.JaxbCoreResourceModelTests"/> <property name="plugin-path" value="${eclipse-home}/plugins/${plugin-name}"/> </ant> </target>
- <!-- This target holds code to cleanup the testing environment after -->
+ <target name="suite2"> <property file="${testRoot}/testServer.properties"/> <property name="jpt-folder" value="${eclipse-home}/jpt_folder"/> <delete dir="${jpt-folder}" quiet="true"/> <ant target="core-test" antfile="${library-file}" dir="${eclipse-home}"> <property name="data-dir" value="${jpt-folder}"/> <property name="plugin-name" value="${plugin-name}"/> <property name="classname" value="org.eclipse.jpt.jaxb.core.tests.internal.context.JaxbCoreContextModelTests"/> <property name="plugin-path" value="${eclipse-home}/plugins/${plugin-name}"/> </ant> </target> <!-- This target holds code to cleanup the testing environment after -->
<!-- after all of the tests have been run. You can use this target to -->
<!-- delete temporary files that have been created. -->
<target name="cleanup">
@@ -30,6 +30,6 @@
<!-- This target runs the test suite. Any actions that need to happen -->
<!-- after all the tests have been run should go here. -->
- <target name="run" depends="init, suite1, cleanup">
+ <target name="run" depends="init, suite1, suite2, cleanup">
</target>
</project> \ No newline at end of file

Back to the top