From cc1e216eb9e4c817f6744ec76d62f21f4bd14489 Mon Sep 17 00:00:00 2001 From: SendaoYan Date: Thu, 22 Feb 2024 09:59:37 +0000 Subject: [PATCH] 8326461: tools/jlink/CheckExecutable.java fails as .debuginfo files are not executable Reviewed-by: shade, alanb --- test/jdk/tools/jlink/CheckExecutable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/jdk/tools/jlink/CheckExecutable.java b/test/jdk/tools/jlink/CheckExecutable.java index 4c9ee6a6c51..d8449682b18 100644 --- a/test/jdk/tools/jlink/CheckExecutable.java +++ b/test/jdk/tools/jlink/CheckExecutable.java @@ -40,7 +40,7 @@ import java.util.Set; public class CheckExecutable { // The bin directory may contain non-executable files (see 8132704) - private static final String IGNORE = "glob:{*.diz,jmc.ini}"; + private static final String IGNORE = "glob:{*.diz,jmc.ini,*.debuginfo}"; public static void main(String args[]) throws IOException { String JAVA_HOME = System.getProperty("java.home");