X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tmf%2Forg.eclipse.tracecompass.tmf.ui.swtbot.tests%2Fsrc%2Forg%2Feclipse%2Ftracecompass%2Ftmf%2Fui%2Fswtbot%2Ftests%2Fviewers%2Fevents%2FCopyToClipboardTest.java;h=cccd73bc98e0038ed4e4fb63c53af80c8135fadd;hb=147bf3726f665ac8120deb19b37e1410fa819d97;hp=2ff9cdbb225a78e32820e67974f0431f9765465b;hpb=675b124966f266dab3244a8b47f56ccdbb999023;p=deliverable%2Ftracecompass.git diff --git a/tmf/org.eclipse.tracecompass.tmf.ui.swtbot.tests/src/org/eclipse/tracecompass/tmf/ui/swtbot/tests/viewers/events/CopyToClipboardTest.java b/tmf/org.eclipse.tracecompass.tmf.ui.swtbot.tests/src/org/eclipse/tracecompass/tmf/ui/swtbot/tests/viewers/events/CopyToClipboardTest.java index 2ff9cdbb22..cccd73bc98 100644 --- a/tmf/org.eclipse.tracecompass.tmf.ui.swtbot.tests/src/org/eclipse/tracecompass/tmf/ui/swtbot/tests/viewers/events/CopyToClipboardTest.java +++ b/tmf/org.eclipse.tracecompass.tmf.ui.swtbot.tests/src/org/eclipse/tracecompass/tmf/ui/swtbot/tests/viewers/events/CopyToClipboardTest.java @@ -26,7 +26,9 @@ import org.apache.log4j.Logger; import org.apache.log4j.SimpleLayout; import org.eclipse.core.runtime.FileLocator; import org.eclipse.core.runtime.Path; +import org.eclipse.jdt.annotation.NonNull; import org.eclipse.osgi.util.NLS; +import org.eclipse.swt.SWT; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.dnd.TextTransfer; import org.eclipse.swt.widgets.Display; @@ -147,6 +149,7 @@ public class CopyToClipboardTest { */ @Test public void testCopySingleSelection() { + assumeTrue(!isAffectedByBug486302()); final SWTBotTable tableBot = fEditorBot.bot().table(); tableBot.getTableItem(1).click(); @@ -159,6 +162,7 @@ public class CopyToClipboardTest { */ @Test public void testCopyMultipleSelection() { + assumeTrue(!isAffectedByBug486302()); final SWTBotTable tableBot = fEditorBot.bot().table(); tableBot.getTableItem(1).click(); KEYBOARD.pressShortcut(Keystrokes.SHIFT, Keystrokes.DOWN); @@ -168,6 +172,22 @@ public class CopyToClipboardTest { assertClipboardContentsEquals(HEADER_TEXT + EVENT1_TEXT + EVENT2_TEXT + EVENT3_TEXT); } + /** + * Returns whether or not the running Eclipse is affected by Bug 486302. The + * bug is present in Eclipse 4.5.2 and earlier running GTK3. + */ + private static boolean isAffectedByBug486302() { + String property = System.getProperty("org.eclipse.swt.internal.gtk.version"); + if (property != null) { + @NonNull String @NonNull [] versionSegments = property.split("\\."); + if (versionSegments.length > 0) { + return SWT.getVersion() <= 4530 && versionSegments[0].equals("3"); + } + } + + return false; + } + /** * Test copy to clipboard not enabled when selection includes search row */