From bd7e2ea13dd1fbb8add3ca7a1f03df33f303873c Mon Sep 17 00:00:00 2001 From: Yasumasa Suenaga Date: Thu, 5 Feb 2026 23:38:10 +0900 Subject: [PATCH] Skip TestJhsdbJstackMixedWithVDSOCallCore.java if it runs on musl libc --- .../sa/TestJhsdbJstackMixedWithVDSOCallCore.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/hotspot/jtreg/serviceability/sa/TestJhsdbJstackMixedWithVDSOCallCore.java b/test/hotspot/jtreg/serviceability/sa/TestJhsdbJstackMixedWithVDSOCallCore.java index d7159f87831..cc8dda2c894 100644 --- a/test/hotspot/jtreg/serviceability/sa/TestJhsdbJstackMixedWithVDSOCallCore.java +++ b/test/hotspot/jtreg/serviceability/sa/TestJhsdbJstackMixedWithVDSOCallCore.java @@ -28,6 +28,7 @@ import jtreg.SkippedException; import jdk.test.lib.JDKToolFinder; import jdk.test.lib.JDKToolLauncher; +import jdk.test.lib.Platform; import jdk.test.lib.SA.SATestUtils; import jdk.test.lib.Utils; import jdk.test.lib.apps.LingeredApp; @@ -78,6 +79,9 @@ public class TestJhsdbJstackMixedWithVDSOCallCore { } public static void main(String... args) throws Throwable { + if (Platform.isMusl()) { + throw new SkippedException("musl libc is not supported yet."); + } checkVDSODebugInfo(); var app = new LingeredAppWithVDSOCall();