summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSendaoYan <syan@openjdk.org>2024-02-22 09:59:37 +0000
committerAlan Bateman <alanb@openjdk.org>2024-02-22 09:59:37 +0000
commitcc1e216eb9e4c817f6744ec76d62f21f4bd14489 (patch)
treef1c30114a4f743eabfdcd9257fcf63b8383f9413
parent10eafdc62e8216e6ef69773fe491a21346c8682d (diff)
8326461: tools/jlink/CheckExecutable.java fails as .debuginfo files are not executablejdk-23+11
Reviewed-by: shade, alanb
-rw-r--r--test/jdk/tools/jlink/CheckExecutable.java2
1 files changed, 1 insertions, 1 deletions
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");