Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2008-09-24 19:30:26 +0000
committerJohn Arthorne2008-09-24 19:30:26 +0000
commit6d5d6c2858211ade4730afaf0b113dc31f3c8cca (patch)
tree46ed086d8399e2b10a7c36bfcb796f872cf01376 /bundles/org.eclipse.equinox.p2.tests.ui
parent0aa19ed1a7c70171b5bee9d7c202872640e79259 (diff)
downloadrt.equinox.p2-6d5d6c2858211ade4730afaf0b113dc31f3c8cca.tar.gz
rt.equinox.p2-6d5d6c2858211ade4730afaf0b113dc31f3c8cca.tar.xz
rt.equinox.p2-6d5d6c2858211ade4730afaf0b113dc31f3c8cca.zip
fixed test.xml for new p2 ui testsv20080924
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests.ui')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests.ui/build.properties2
-rw-r--r--bundles/org.eclipse.equinox.p2.tests.ui/test.xml14
2 files changed, 8 insertions, 8 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests.ui/build.properties b/bundles/org.eclipse.equinox.p2.tests.ui/build.properties
index 36ea22a5e..0464be0db 100644
--- a/bundles/org.eclipse.equinox.p2.tests.ui/build.properties
+++ b/bundles/org.eclipse.equinox.p2.tests.ui/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2007 IBM Corporation and others.
+# Copyright (c) 2008 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
diff --git a/bundles/org.eclipse.equinox.p2.tests.ui/test.xml b/bundles/org.eclipse.equinox.p2.tests.ui/test.xml
index 856774cf7..968c0d815 100644
--- a/bundles/org.eclipse.equinox.p2.tests.ui/test.xml
+++ b/bundles/org.eclipse.equinox.p2.tests.ui/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="p2_location" value="${eclipse-home}/p2_sniff_folder" />
- <property name="plugin-name" value="org.eclipse.equinox.p2.tests" />
+ <property name="p2ui_location" value="${eclipse-home}/p2_ui_data_dir" />
+ <property name="plugin-name" value="org.eclipse.equinox.p2.tests.ui" />
<!-- This target holds all initialization code that needs to be done for -->
<!-- all tests that are to be run. Initialization for individual tests -->
@@ -18,7 +18,7 @@
<!-- 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="${p2_location}" quiet="true" />
+ <delete dir="${p2ui_location}" quiet="true" />
</target>
<!-- This target runs the test suite. Any actions that need to happen after all -->
@@ -40,10 +40,10 @@
</target>
<target name="p2Tests" depends="init,cleanup">
- <ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
- <property name="data-dir" value="${p2_location}" />
- <property name="plugin-name" value="org.eclipse.equinox.p2.tests" />
- <property name="classname" value="org.eclipse.equinox.p2.tests.AutomatedTests" />
+ <ant target="ui-test" antfile="${library-file}" dir="${eclipse-home}">
+ <property name="data-dir" value="${p2ui_location}" />
+ <property name="plugin-name" value="org.eclipse.equinox.p2.tests.ui" />
+ <property name="classname" value="org.eclipse.equinox.p2.tests.ui.AutomatedTests" />
</ant>
</target>

Back to the top