Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Hoepfner2019-02-19 16:03:09 +0000
committerAlexander Kurtakov2019-06-12 11:57:58 +0000
commit892bb918c3e3f49a190937b6e02b0af80e9a523b (patch)
tree57231ea906ba4011f147c31a7fbbcea1b761616f
parent777df6ca816eb5839ba021d54dbbfca597278087 (diff)
downloadeclipse.platform.releng.aggregator-892bb918c3e3f49a190937b6e02b0af80e9a523b.tar.gz
eclipse.platform.releng.aggregator-892bb918c3e3f49a190937b6e02b0af80e9a523b.tar.xz
eclipse.platform.releng.aggregator-892bb918c3e3f49a190937b6e02b0af80e9a523b.zip
Bug 544568 jface tests registration
Enable running jface tests in nightly builds. Change-Id: I96090edec7ceaee4f79f8e42b529c21a6ae89b79 Signed-off-by: Marcus Hoepfner <marcus.hoepfner@sap.com>
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml3
-rw-r--r--production/testScripts/configuration/sdk.tests/testScripts/test.xml9
2 files changed, 11 insertions, 1 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
index 41a9ae07d..62970c87a 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
@@ -688,6 +688,9 @@
name="org.eclipse.jface.tests.databinding"
type="test" />
<logFile
+ name="org.eclipse.jface.tests"
+ type="test" />
+ <logFile
name="org.eclipse.jface.text.tests"
type="test" />
<logFile
diff --git a/production/testScripts/configuration/sdk.tests/testScripts/test.xml b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
index 0e1fcb1f6..07d11241c 100644
--- a/production/testScripts/configuration/sdk.tests/testScripts/test.xml
+++ b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
@@ -1719,7 +1719,7 @@
</target>
<target
- name="jface"
+ name="jfacetext"
depends="init">
<runTests testPlugin="org.eclipse.jface.text.tests" />
</target>
@@ -1730,6 +1730,12 @@
<runTests testPlugin="org.eclipse.jface.tests.databinding" />
</target>
+ <target
+ name="jface"
+ depends="init">
+ <runTests testPlugin="org.eclipse.jface.tests" />
+ </target>
+
<target name="filebuffers">
<runTests testPlugin="org.eclipse.core.filebuffers.tests" />
</target>
@@ -2427,6 +2433,7 @@
<antcall target="equinoxp2" />
<antcall target="teamcvs" />
<antcall target="jface" />
+ <antcall target="jfacetext" />
<antcall target="ui" />
<antcall target="uiperformance" />

Back to the top