Skip to content

Commit

Permalink
8266968: Ignore test.com.sun.webkit.LocalStorageAccessTest
Browse files Browse the repository at this point in the history
Reviewed-by: kcr
  • Loading branch information
arun-joseph committed May 13, 2021
1 parent e40b0b8 commit 389e8c0
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@

package test.com.sun.webkit;

import com.sun.javafx.PlatformUtil;

import java.io.File;
import static java.util.Arrays.asList;
import java.util.List;
import static org.junit.Assert.assertEquals;
import static org.junit.Assume.assumeTrue;
import org.junit.Test;

/**
Expand All @@ -39,6 +42,10 @@
public class LocalStorageAccessTest {
@Test (timeout = 15000)
public void testMainThreadDoesNotSegfault() throws Exception {
if (PlatformUtil.isWindows()) {
assumeTrue(Boolean.getBoolean("unstable.test")); // JDK-8265661
}

// This is an indirect test of the webkit file system implementation.
// It was observed, that accessing local storage causes a segfault
// in the JVM. That case is executed by this test.
Expand Down

1 comment on commit 389e8c0

@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.