From d6943c532eeade593b17c7f14c136c20a3741e05 Mon Sep 17 00:00:00 2001 From: Albert Mingkun Yang Date: Mon, 9 Mar 2026 09:10:41 +0000 Subject: [PATCH] 8379193: Incorrect build ID path in SATestUtils.java Reviewed-by: kevinw, ysuenaga --- test/lib/jdk/test/lib/SA/SATestUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/jdk/test/lib/SA/SATestUtils.java b/test/lib/jdk/test/lib/SA/SATestUtils.java index 50f5d71f1f1..754ef4c40dd 100644 --- a/test/lib/jdk/test/lib/SA/SATestUtils.java +++ b/test/lib/jdk/test/lib/SA/SATestUtils.java @@ -333,7 +333,7 @@ public class SATestUtils { .get(); String dir = buildID.substring(0, 2); String file = buildID.substring(2); - debuginfoPath = Path.of("/usr/lib/debug/.build_id", dir, file + ".debug"); + debuginfoPath = Path.of("/usr/lib/debug/.build-id", dir, file + ".debug"); exists = Files.exists(debuginfoPath); } catch (NoSuchElementException _) { // return null if vDSO not found.