Repository: hbase Updated Branches: refs/heads/0.98 9f2e748f0 -> 7f8a86441
HBASE-12177 TestIPv6NIOServerSocketChannel hangs consistently on Java 8 Disable hanging tests on Java 8 for investigation Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7f8a8644 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7f8a8644 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7f8a8644 Branch: refs/heads/0.98 Commit: 7f8a86441ed9177498a7e73b2815055fd5271b54 Parents: 9f2e748 Author: Andrew Purtell <[email protected]> Authored: Mon Oct 6 08:29:44 2014 -0700 Committer: Andrew Purtell <[email protected]> Committed: Mon Oct 6 08:29:44 2014 -0700 ---------------------------------------------------------------------- .../org/apache/hadoop/hbase/TestIPv6NIOServerSocketChannel.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/7f8a8644/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIPv6NIOServerSocketChannel.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIPv6NIOServerSocketChannel.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIPv6NIOServerSocketChannel.java index e57fdbd..467edae 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIPv6NIOServerSocketChannel.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIPv6NIOServerSocketChannel.java @@ -28,6 +28,7 @@ import java.nio.channels.ServerSocketChannel; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.categories.Category; @@ -103,6 +104,7 @@ public class TestIPv6NIOServerSocketChannel { * Checks whether we are effected by the JDK issue on windows, and if so * ensures that we are running with preferIPv4Stack=true. */ + @Ignore("Disabled for investigation, see HBASE-12177") @Test public void testServerSocket() throws IOException { byte[] addr = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 }; @@ -141,6 +143,7 @@ public class TestIPv6NIOServerSocketChannel { * Tests whether every InetAddress we obtain by resolving can open a * ServerSocketChannel. */ + @Ignore("Disabled for investigation, see HBASE-12177") @Test public void testServerSocketFromLocalhostResolution() throws IOException { InetAddress[] addrs = InetAddress.getAllByName("localhost");
