Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-10-25 15:39:10 +0000
committerLars Vogel2014-10-30 07:27:24 +0000
commitfdff32c2400e3cf8467eaa3749598484f31385d5 (patch)
treea2982ed067624bf8ba9613330755e349dfa1062a
parentbeba2149c7152cec25d5fe1e0bfb43f70b49b190 (diff)
downloadeclipse.platform.ui-fdff32c2400e3cf8467eaa3749598484f31385d5.tar.gz
eclipse.platform.ui-fdff32c2400e3cf8467eaa3749598484f31385d5.tar.xz
eclipse.platform.ui-fdff32c2400e3cf8467eaa3749598484f31385d5.zip
Bug 448838 - [Tests] Activate org.eclipse.e4.ui.tests tests during Tycho
build Change-Id: I481f247ec0d8917bf834d688eb609162f5556f31 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--tests/org.eclipse.e4.ui.tests/pom.xml22
1 files changed, 13 insertions, 9 deletions
diff --git a/tests/org.eclipse.e4.ui.tests/pom.xml b/tests/org.eclipse.e4.ui.tests/pom.xml
index fa91f6b076a..95a5d4cf750 100644
--- a/tests/org.eclipse.e4.ui.tests/pom.xml
+++ b/tests/org.eclipse.e4.ui.tests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Igor Fedorenko - initial implementation
+ Lars Vogel <Lars.Vogel@vogella.com> - Bug 448838
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -16,27 +17,30 @@
<groupId>eclipse.platform.ui</groupId>
<version>4.5.0-SNAPSHOT</version>
</parent>
- <groupId>org.eclipse.e4</groupId>
+ <groupId>org.eclipse.ui</groupId>
<artifactId>org.eclipse.e4.ui.tests</artifactId>
<version>0.10.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
- <testSuite>${project.artifactId}</testSuite>
- <testClass>org.eclipse.e4.ui.tests.UIAllTests</testClass>
+ <!-- TODO Change to false to run tests during Tycho build -->
+ <skipTests>true</skipTests>
</properties>
-
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho.version}</version>
- <configuration>
- <useUIHarness>false</useUIHarness>
- <useUIThread>false</useUIThread>
- </configuration>
+ <configuration>
+ <includes>
+ <include>**/org/eclipse/e4/ui/tests/UIAllTests.java</include>
+ </includes>
+ <useUIHarness>true</useUIHarness>
+ <useUIThread>true</useUIThread>
+ </configuration>
</plugin>
</plugins>
</build>
+
</project>

Back to the top