Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKalyan Prasad Tatavarthi2020-02-14 11:29:51 +0000
committerKalyan Prasad Tatavarthi2020-02-14 13:44:08 +0000
commitea238a8d94314b4df89efc8546e5819f48b857aa (patch)
tree8b7a13765ecc103161fdf33fa2578f7b3bfab8fa
parent5212f4dfaf0e391904b31c5d9da2bb2656bfb332 (diff)
downloadeclipse.platform.text-ea238a8d94314b4df89efc8546e5819f48b857aa.tar.gz
eclipse.platform.text-ea238a8d94314b4df89efc8546e5819f48b857aa.tar.xz
eclipse.platform.text-ea238a8d94314b4df89efc8546e5819f48b857aa.zip
ContextInformationTest.testContextInfo_hide_focusOut fails in nightly builds Disabling the test on Mac Change-Id: I5ac89e171db8c8dda00d72c01a9395c9c956fb49 Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>
-rw-r--r--org.eclipse.jface.text.tests/src/org/eclipse/jface/text/tests/contentassist/ContextInformationTest.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.jface.text.tests/src/org/eclipse/jface/text/tests/contentassist/ContextInformationTest.java b/org.eclipse.jface.text.tests/src/org/eclipse/jface/text/tests/contentassist/ContextInformationTest.java
index ce0d04f72e6..d5c2f2e1be7 100644
--- a/org.eclipse.jface.text.tests/src/org/eclipse/jface/text/tests/contentassist/ContextInformationTest.java
+++ b/org.eclipse.jface.text.tests/src/org/eclipse/jface/text/tests/contentassist/ContextInformationTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2017, 2019 Stephan Wahlbrink and others.
+ * Copyright (c) 2017, 2020 Stephan Wahlbrink and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -15,6 +15,7 @@ package org.eclipse.jface.text.tests.contentassist;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
+import static org.junit.Assume.assumeFalse;
import java.util.List;
@@ -26,6 +27,8 @@ import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
+import org.eclipse.core.runtime.Platform;
+
import org.eclipse.text.tests.Accessor;
import org.eclipse.jface.text.IDocument;
@@ -91,6 +94,8 @@ public class ContextInformationTest extends AbstractContentAssistTest {
@Test
public void testContextInfo_hide_focusOut() throws Exception {
+ assumeFalse("Test fails on Mac: Bug 558989", Platform.OS_MACOSX.equals(Platform.getOS()));
+
setupSourceViewer(createBarContentAssist(), BarContentAssistProcessor.PROPOSAL);
final List<Shell> beforeShells = getCurrentShells();

Back to the top