Skip to content

Commit fab2357

Browse files
committedMar 28, 2023
8304498: JShell does not switch to raw mode when there is no /bin/test
Reviewed-by: coffeys, vromero
1 parent 1fc218c commit fab2357

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed
 

‎src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/OSUtils.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
package jdk.internal.org.jline.utils;
1010

1111
import java.io.File;
12+
import java.nio.file.Files;
13+
import java.nio.file.Paths;
1214

1315
public class OSUtils {
1416

@@ -93,7 +95,8 @@ public class OSUtils {
9395
stty = IS_OSX ? "/bin/stty" : "stty";
9496
sttyfopt = IS_OSX ? "-f" : "-F";
9597
infocmp = "infocmp";
96-
test = "/bin/test";
98+
test = isTestCommandValid("/usr/bin/test") ? "/usr/bin/test"
99+
: "/bin/test";
97100
}
98101
TTY_COMMAND = tty;
99102
STTY_COMMAND = stty;
@@ -102,4 +105,7 @@ public class OSUtils {
102105
TEST_COMMAND = test;
103106
}
104107

108+
private static boolean isTestCommandValid(String command) {
109+
return Files.isExecutable(Paths.get(command));
110+
}
105111
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*
2+
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/**
25+
* @test
26+
* @bug 8304498
27+
* @summary Verify the OSUtils class is initialized properly
28+
* @modules jdk.internal.le/jdk.internal.org.jline.utils
29+
*/
30+
31+
import jdk.internal.org.jline.utils.OSUtils;
32+
33+
public class OSUtilsTest {
34+
public static void main(String... args) throws Exception {
35+
new OSUtilsTest().run();
36+
}
37+
38+
void run() throws Exception {
39+
runTestTest();
40+
}
41+
42+
void runTestTest() throws Exception {
43+
if (OSUtils.IS_WINDOWS) {
44+
return ; //skip on Windows
45+
}
46+
47+
Process p = new ProcessBuilder(OSUtils.TEST_COMMAND, "-z", "").inheritIO().start();
48+
if (p.waitFor() != 0) {
49+
throw new AssertionError("Unexpected result!");
50+
}
51+
}
52+
}

0 commit comments

Comments
 (0)
Please sign in to comment.