Skip to content

Commit

Permalink
8296592: Skip failing test StraightLineTest on Linux
Browse files Browse the repository at this point in the history
Reviewed-by: angorya, arapte
  • Loading branch information
kevinrushforth committed Nov 9, 2022
1 parent b08f135 commit 706261b
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -27,6 +27,7 @@

import com.sun.webkit.WebPage;
import com.sun.webkit.WebPageShim;
import com.sun.javafx.PlatformUtil;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.scene.Scene;
Expand All @@ -50,6 +51,7 @@
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.junit.Assume.assumeFalse;

public class StraightLineTest {
private static final CountDownLatch launchLatch = new CountDownLatch(1);
Expand Down Expand Up @@ -110,6 +112,9 @@ public void setupTestObjects() {
}

@Test public void testLine() {
// JDK-8296590
assumeFalse(PlatformUtil.isLinux());

final CountDownLatch webViewStateLatch = new CountDownLatch(1);

Util.runAndWait(() -> {
Expand Down

1 comment on commit 706261b

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.