Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2015-04-15 14:21:53 +0000
committerDani Megert2015-04-15 15:06:15 +0000
commit612432f26e9fd84a2becea6ebb5f94d7d2672ce3 (patch)
treebb52cfe38c592f16d63ba650c280fa37d1088153 /org.eclipse.debug.tests/pom.xml
parent3c608ddde09bcae80783e2d93917117c0a7117c3 (diff)
downloadeclipse.platform.debug-612432f26e9fd84a2becea6ebb5f94d7d2672ce3.tar.gz
eclipse.platform.debug-612432f26e9fd84a2becea6ebb5f94d7d2672ce3.tar.xz
eclipse.platform.debug-612432f26e9fd84a2becea6ebb5f94d7d2672ce3.zip
Enable tests for Tycho
Signed-off-by: Dani Megert <Daniel_Megert@ch.ibm.com>
Diffstat (limited to 'org.eclipse.debug.tests/pom.xml')
-rw-r--r--org.eclipse.debug.tests/pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/org.eclipse.debug.tests/pom.xml b/org.eclipse.debug.tests/pom.xml
index 36e1b60a3..f376f62ab 100644
--- a/org.eclipse.debug.tests/pom.xml
+++ b/org.eclipse.debug.tests/pom.xml
@@ -22,5 +22,28 @@
<packaging>eclipse-test-plugin</packaging>
<properties>
<code.ignoredWarnings>${tests.ignoredWarnings}</code.ignoredWarnings>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.debug.tests.AutomatedSuite</testClass>
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <useUIHarness>true</useUIHarness>
+ <useUIThread>true</useUIThread>
+ <dependencies>
+ <dependency>
+ <!-- workaround for missing dependency in org.eclipse.e4.ui.services: https://bugs.eclipse.org/462862 -->
+ <type>eclipse-plugin</type>
+ <artifactId>org.eclipse.equinox.event</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ </dependencies>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top