Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8325576: java/lang/ProcessHandle/InfoTest.java fails on systems with coreutils with --enable-single-binary #17798

Closed
wants to merge 5 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions test/jdk/java/lang/ProcessHandle/InfoTest.java
Original file line number Diff line number Diff line change
@@ -292,14 +292,13 @@ public static void test3() {
if (info.command().isPresent()) {
String command = info.command().get();
String expected = "sleep";

if (Platform.isWindows()) {
expected = "sleep.exe";
} else if (Platform.isBusybox("/bin/sleep")) {
// With busybox sleep is just a sym link to busybox.
// The busbox executable is seen as ProcessHandle.Info command.
expected = "busybox";
} else if (Platform.isCoreutilsSingleExecutable("sleep")) {
} else if (Platform.isCoreutilsSingleExecutable()) {
// With coreutils single executable sleep is just a script around coreutils.
// The coreutils executable is seen as ProcessHandle.Info command.
expected = "/usr/bin/coreutils";
19 changes: 4 additions & 15 deletions test/lib/jdk/test/lib/Platform.java
Original file line number Diff line number Diff line change
@@ -125,21 +125,10 @@ public static boolean isBusybox(String tool) {
}
}

public static boolean isCoreutilsSingleExecutable(String tool) {
try {
ProcessBuilder pb = new ProcessBuilder("coreutils", "--help");
pb.redirectErrorStream(true);
Process p = pb.start();
BufferedReader b = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = b.readLine()) != null) {
if (line.contains(tool)) {
return true;
}
}
} catch(Exception e) {
}
return false;
public static boolean isCoreutilsSingleExecutable() {
// If more distrobutions start using --enable-single-binary with coreutils
// additional path checks may be required.
return Paths.exist("/usr/bin/coreutils");
}

public static boolean isOSX() {