Skip to content

Commit 9d2f591

Browse files
committedMay 5, 2022
8285987: executing shell scripts without #! fails on Alpine linux
Reviewed-by: mdoerr, goetz
1 parent fd41e65 commit 9d2f591

File tree

3 files changed

+35
-18
lines changed

3 files changed

+35
-18
lines changed
 

‎test/jdk/java/lang/ProcessBuilder/Basic.java

+19-17
Original file line numberDiff line numberDiff line change
@@ -486,15 +486,15 @@ public static void main(String args[]) throws Throwable {
486486
equal(run(pb).exitValue(),
487487
False.exitValue());
488488
// Traditional shell scripts without #!
489-
setFileContents(prog, "exec /bin/true\n");
490-
prog.setExecutable(true);
491-
equal(run(pb).exitValue(),
492-
True.exitValue());
493-
prog.delete();
494-
setFileContents(prog, "exec /bin/false\n");
495-
prog.setExecutable(true);
496-
equal(run(pb).exitValue(),
497-
False.exitValue());
489+
if (!(Platform.isLinux() && Platform.isMusl())) {
490+
setFileContents(prog, "exec /bin/true\n");
491+
prog.setExecutable(true);
492+
equal(run(pb).exitValue(), True.exitValue());
493+
prog.delete();
494+
setFileContents(prog, "exec /bin/false\n");
495+
prog.setExecutable(true);
496+
equal(run(pb).exitValue(), False.exitValue());
497+
}
498498
prog.delete();
499499
}
500500

@@ -511,14 +511,16 @@ public static void main(String args[]) throws Throwable {
511511
pb.command(cmd);
512512

513513
// Test traditional shell scripts without #!
514-
setFileContents(dir1Prog, "/bin/echo \"$@\"\n");
515-
pb.command(new String[] {"prog", "hello", "world"});
516-
checkPermissionDenied(pb);
517-
dir1Prog.setExecutable(true);
518-
equal(run(pb).out(), "hello world\n");
519-
equal(run(pb).exitValue(), True.exitValue());
520-
dir1Prog.delete();
521-
pb.command(cmd);
514+
if (!(Platform.isLinux() && Platform.isMusl())) {
515+
setFileContents(dir1Prog, "/bin/echo \"$@\"\n");
516+
pb.command(new String[] {"prog", "hello", "world"});
517+
checkPermissionDenied(pb);
518+
dir1Prog.setExecutable(true);
519+
equal(run(pb).out(), "hello world\n");
520+
equal(run(pb).exitValue(), True.exitValue());
521+
dir1Prog.delete();
522+
pb.command(cmd);
523+
}
522524

523525
// If prog found on both parent and child's PATH,
524526
// parent's is used.

‎test/langtools/jdk/jshell/ExternalEditorTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,6 +25,8 @@
2525
* @test
2626
* @summary Testing external editor.
2727
* @bug 8143955 8080843 8163816 8143006 8169828 8171130 8162989 8210808
28+
* @comment musl/Alpine has problems executing some shell scripts, see 8285987
29+
* @requires !vm.musl
2830
* @modules jdk.jshell/jdk.internal.jshell.tool
2931
* @build ReplToolTesting CustomEditor EditorTestBase
3032
* @run testng ExternalEditorTest

‎test/lib/jdk/test/lib/Platform.java

+13
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,19 @@ public static String getVMVersion() {
189189
return vmVersion;
190190
}
191191

192+
public static boolean isMusl() {
193+
try {
194+
ProcessBuilder pb = new ProcessBuilder("ldd", "--version");
195+
pb.redirectErrorStream(true);
196+
Process p = pb.start();
197+
BufferedReader b = new BufferedReader(new InputStreamReader(p.getInputStream()));
198+
String l = b.readLine();
199+
if (l != null && l.contains("musl")) { return true; }
200+
} catch(Exception e) {
201+
}
202+
return false;
203+
}
204+
192205
public static boolean isAArch64() {
193206
return isArch("aarch64");
194207
}

0 commit comments

Comments
 (0)
Please sign in to comment.