From e43aee58e176d43dbec90271c6249c0771de0ef5 Mon Sep 17 00:00:00 2001 From: Jan Lahoda Date: Thu, 15 Apr 2021 15:16:11 +0000 Subject: [PATCH] 8262900: ToolBasicTest fails to access HTTP server it starts Reviewed-by: sundar, vromero --- test/langtools/jdk/jshell/ToolBasicTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/langtools/jdk/jshell/ToolBasicTest.java b/test/langtools/jdk/jshell/ToolBasicTest.java index 41b22b53878..8d8dfc8f9f4 100644 --- a/test/langtools/jdk/jshell/ToolBasicTest.java +++ b/test/langtools/jdk/jshell/ToolBasicTest.java @@ -526,7 +526,7 @@ public class ToolBasicTest extends ReplToolTesting { public void testOpenFileOverHttp() throws IOException { var script = "int a = 10;int b = 20;int c = a + b;"; - var localhostAddress = new InetSocketAddress(InetAddress.getLocalHost().getHostAddress(), 0); + var localhostAddress = new InetSocketAddress(InetAddress.getLoopbackAddress().getHostAddress(), 0); var httpServer = HttpServer.create(localhostAddress, 0); try { httpServer.createContext("/script", exchange -> {