Skip to content

Commit f37c155

Browse files
committed
Disable failing browser tests for Linux
Contributes to #1564
1 parent 639969b commit f37c155

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_Browser.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -845,6 +845,7 @@ public void test_OpenWindowListener_openHasValidEventDetails() {
845845
/** Test that a script 'window.open()' opens a child popup shell. */
846846
@Test
847847
public void test_OpenWindowListener_open_ChildPopup() {
848+
assumeFalse("Not currently working on Linux, see https://github.com/eclipse-platform/eclipse.platform.swt/issues/1564", SwtTestUtil.isGTK);
848849
AtomicBoolean childCompleted = new AtomicBoolean(false);
849850

850851
Shell childShell = new Shell(shell, SWT.None);
@@ -882,6 +883,8 @@ public void test_OpenWindowListener_open_ChildPopup() {
882883
/** Validate event order : Child's visibility should come before progress completed event */
883884
@Test
884885
public void test_OpenWindow_Progress_Listener_ValidateEventOrder() {
886+
assumeFalse("Not currently working on Linux, see https://github.com/eclipse-platform/eclipse.platform.swt/issues/1564", SwtTestUtil.isGTK);
887+
885888
AtomicBoolean windowOpenFired = new AtomicBoolean(false);
886889
AtomicBoolean childCompleted = new AtomicBoolean(false);
887890
AtomicBoolean visibilityShowed = new AtomicBoolean(false);
@@ -1380,6 +1383,8 @@ public void completed(ProgressEvent event) {
13801383
*/
13811384
@Test
13821385
public void test_VisibilityWindowListener_eventSize() {
1386+
assumeFalse("Not currently working on Linux, see https://github.com/eclipse-platform/eclipse.platform.swt/issues/1564", SwtTestUtil.isGTK);
1387+
13831388
shell.setSize(200,300);
13841389
AtomicBoolean childCompleted = new AtomicBoolean(false);
13851390
AtomicReference<Point> result = new AtomicReference<>(new Point(0,0));

0 commit comments

Comments
 (0)