mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-06 08:28:27 +00:00
Skip TestJhsdbJstackMixedWithVDSOCallCore.java if it runs on musl libc
This commit is contained in:
parent
f9ce546beb
commit
bd7e2ea13d
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user