jdk/test/java/lang/Runtime/exec/ExitValue.java
changeset 32649 2ee9017c7597
parent 23569 1ef5563dedda
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    70     {
    70     {
    71         checkExitValue(new String[] { UnixCommands.sh(), "-c", posixShellProgram },
    71         checkExitValue(new String[] { UnixCommands.sh(), "-c", posixShellProgram },
    72                        expectedExitValue);
    72                        expectedExitValue);
    73     }
    73     }
    74 
    74 
    75     final static int EXIT_CODE = 5;
    75     static final int EXIT_CODE = 5;
    76 
    76 
    77     public static void main(String[] args) throws Exception {
    77     public static void main(String[] args) throws Exception {
    78         if (! UnixCommands.isUnix) {
    78         if (! UnixCommands.isUnix) {
    79             System.out.println("For UNIX only");
    79             System.out.println("For UNIX only");
    80             return;
    80             return;