Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Besedin2008-03-06 21:29:44 +0000
committerOleg Besedin2008-03-06 21:29:44 +0000
commitbc07a9c3739e1830028ee3abce137ed2cb8a728a (patch)
treea4d8f5117d68acf9ef18fc439130ca6ceb370a5b /bundles/org.eclipse.equinox.security.tests
parentb4be32d59721fbb396484a3998b0ea75b7dbae44 (diff)
downloadrt.equinox.bundles-bc07a9c3739e1830028ee3abce137ed2cb8a728a.tar.gz
rt.equinox.bundles-bc07a9c3739e1830028ee3abce137ed2cb8a728a.tar.xz
rt.equinox.bundles-bc07a9c3739e1830028ee3abce137ed2cb8a728a.zip
Bug 220818 Add graduated security bundles to the build
Diffstat (limited to 'bundles/org.eclipse.equinox.security.tests')
-rw-r--r--bundles/org.eclipse.equinox.security.tests/test.xml21
1 files changed, 11 insertions, 10 deletions
diff --git a/bundles/org.eclipse.equinox.security.tests/test.xml b/bundles/org.eclipse.equinox.security.tests/test.xml
index 477105de7..427b381e1 100644
--- a/bundles/org.eclipse.equinox.security.tests/test.xml
+++ b/bundles/org.eclipse.equinox.security.tests/test.xml
@@ -5,8 +5,8 @@
<!-- sets the properties eclipse-home, and library-file -->
<property name="eclipse-home" value="${basedir}/../../"/>
<property name="library-file" value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
- <property name="runtime_location" value="${eclipse-home}/equinox_security_temp_folder"/>
<property name="plugin-name" value="org.eclipse.equinox.security.tests"/>
+ <property name="security-folder" value="${eclipse-home}/equinox_security"/>
<!-- This target holds all initialization code that needs to be done for -->
<!-- all tests that are to be run. Initialization for individual tests -->
@@ -15,21 +15,22 @@
<tstamp/>
</target>
- <!-- This target holds code to cleanup the testing environment after the tests -->
- <!-- have been run. You can use this to delete temporary files that are created. -->
- <target name="cleanup">
- <delete dir="${runtime_location}" quiet="true"/>
- </target>
-
<!-- This target defines the tests that need to be run. -->
<target name="suite" depends="init,cleanup">
- <ant target="equinox-security-test" antfile="${library-file}" dir="${eclipse-home}">
- <property name="data-dir" value="${runtime_location}"/>
- <property name="plugin-name" value="org.eclipse.equinox.security.tests"/>
+ <delete dir="${security-folder}" quiet="true"/>
+ <ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
+ <property name="data-dir" value="${security-folder}"/>
+ <property name="plugin-name" value="${plugin-name}"/>
<property name="classname" value="org.eclipse.equinox.security.tests.AllSecurityTests"/>
</ant>
</target>
+ <!-- This target holds code to cleanup the testing environment after the tests -->
+ <!-- have been run. You can use this to delete temporary files that are created. -->
+ <target name="cleanup">
+ <delete dir="${security-folder}" quiet="true"/>
+ </target>
+
<!-- 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,suite,cleanup">

Back to the top