Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2011-01-22 21:20:13 +0000
committerspingel2011-01-22 21:20:13 +0000
commite795ca1611881b39f9a7c88f8f07d408ce9b18be (patch)
tree781cb09a437dae4306f45f6ca0bfe61e78b7cbac /org.eclipse.mylyn.commons.core
parent4c740ab4842cf24a21cbb846fd58625b5f3ee8f6 (diff)
downloadorg.eclipse.mylyn.commons-e795ca1611881b39f9a7c88f8f07d408ce9b18be.tar.gz
org.eclipse.mylyn.commons-e795ca1611881b39f9a7c88f8f07d408ce9b18be.tar.xz
org.eclipse.mylyn.commons-e795ca1611881b39f9a7c88f8f07d408ce9b18be.zip
NEW - bug 330155: [releng] modularize Mylyn build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330155
Diffstat (limited to 'org.eclipse.mylyn.commons.core')
-rw-r--r--org.eclipse.mylyn.commons.core/src/org/eclipse/mylyn/commons/core/CoreUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.commons.core/src/org/eclipse/mylyn/commons/core/CoreUtil.java b/org.eclipse.mylyn.commons.core/src/org/eclipse/mylyn/commons/core/CoreUtil.java
index 660ea646..1c7228ed 100644
--- a/org.eclipse.mylyn.commons.core/src/org/eclipse/mylyn/commons/core/CoreUtil.java
+++ b/org.eclipse.mylyn.commons.core/src/org/eclipse/mylyn/commons/core/CoreUtil.java
@@ -28,7 +28,7 @@ public class CoreUtil {
static {
String application = System.getProperty("eclipse.application", ""); //$NON-NLS-1$ //$NON-NLS-2$
if (application.length() > 0) {
- TEST_MODE = application.endsWith("testapplication"); //$NON-NLS-1$
+ TEST_MODE = application.endsWith("testapplication") || application.endsWith("uitest"); //$NON-NLS-1$ //$NON-NLS-2$
} else {
// eclipse 3.3 does not the eclipse.application property
String commands = System.getProperty("eclipse.commands", ""); //$NON-NLS-1$ //$NON-NLS-2$

Back to the top