diff options
author | Leo Ufimtsev | 2018-04-05 15:11:44 +0000 |
---|---|---|
committer | Leo Ufimtsev | 2018-04-05 15:11:44 +0000 |
commit | 1462f91af5e84d5f520979d0b4b9b048f3f3841b (patch) | |
tree | 490ce73aff35a3d40dcf127abf59dbbd7f980643 /tests/org.eclipse.swt.tests | |
parent | 4704eb47704c6401bcc5879c6ef4975868c38c8e (diff) | |
download | eclipse.platform.swt-1462f91af5e84d5f520979d0b4b9b048f3f3841b.tar.gz eclipse.platform.swt-1462f91af5e84d5f520979d0b4b9b048f3f3841b.tar.xz eclipse.platform.swt-1462f91af5e84d5f520979d0b4b9b048f3f3841b.zip |
Bug 532946 – Fix SwtTestUtil#isRunningOnEclipseOrgHudsonGTK
Changing to isRunningOnContinousIntegration
Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=532946
Change-Id: I13a8f9e69e83a6af274bbb0e14d1d9ac7c0b97df
Signed-off-by: Leo Ufimtsev <lufimtse@redhat.com>
Diffstat (limited to 'tests/org.eclipse.swt.tests')
-rw-r--r-- | tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java index 84336cd06a..8f19f03c43 100644 --- a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java +++ b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java @@ -70,8 +70,8 @@ public class SwtTestUtil { public final static boolean isAIX = System.getProperty("os.name").equals("AIX"); - /** Useful if you want some tests not to run on Jenkins */ - public final static boolean isRunningOnEclipseOrgContinousIntegration = isGTK && ("genie.platform".equalsIgnoreCase(System.getProperty("user.name"))); + /** Useful if you want some tests not to run on Jenkins with user "genie.platform" */ + public final static boolean isRunningOnContinousIntegration = isGTK && ("genie.platform".equalsIgnoreCase(System.getProperty("user.name"))); public final static boolean isX11 = isGTK && "x11".equals(System.getProperty("org.eclipse.swt.internal.gdk.backend")); |