8262900: ToolBasicTest fails to access HTTP server it starts
Reviewed-by: sundar, vromero
diff --git a/test/langtools/jdk/jshell/ToolBasicTest.java b/test/langtools/jdk/jshell/ToolBasicTest.java
index 41b22b5..8d8dfc8 100644
--- a/test/langtools/jdk/jshell/ToolBasicTest.java
+++ b/test/langtools/jdk/jshell/ToolBasicTest.java
@@ -526,7 +526,7 @@
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 -> {