jdk/test/java/lang/Runtime/exec/ExitValue.java
author martin
Tue, 15 Sep 2015 21:56:04 -0700
changeset 32649 2ee9017c7597
parent 23569 1ef5563dedda
permissions -rw-r--r--
8136583: Core libraries should use blessed modifier order Summary: Run blessed-modifier-order script (see bug) Reviewed-by: psandoz, chegar, alanb, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 4680945 4873419
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Check process exit code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author kladko, Martin Buchholz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
public class ExitValue
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    public static String join(String separator, String[] elts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
        String result = elts[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
        for (int i = 1; i < elts.length; ++i)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
            result = result + separator + elts[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    public static void checkExitValue(String[] commandArgs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
                                      int expectedExitValue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        throws Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        if (! (new File(commandArgs[0]).exists()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        System.out.println("Running command: " + join(" ", commandArgs));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        Process proc = Runtime.getRuntime().exec(commandArgs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        int val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        byte[] buf = new byte[4096];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        int n = proc.getErrorStream().read(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        if (n > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            throw new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                ("Unexpected stderr: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                 + new String(buf, 0, n, "ASCII"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        if ((val = proc.waitFor()) != expectedExitValue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            throw new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                ("waitFor() returned unexpected value " + val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        if ((val = proc.exitValue()) != expectedExitValue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            throw new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                ("exitValue() returned unexpected value " + val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    public static void checkPosixShellExitValue(String posixShellProgram,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                                                int expectedExitValue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        throws Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    {
23569
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    71
        checkExitValue(new String[] { UnixCommands.sh(), "-c", posixShellProgram },
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                       expectedExitValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 23569
diff changeset
    75
    static final int EXIT_CODE = 5;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    public static void main(String[] args) throws Exception {
23569
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    78
        if (! UnixCommands.isUnix) {
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    79
            System.out.println("For UNIX only");
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    80
            return;
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    81
        }
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    82
        UnixCommands.ensureCommandsAvailable("sh", "true", "kill");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        String java = join(File.separator, new String []
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            { System.getProperty("java.home"), "bin", "java" });
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        checkExitValue(new String[]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            { java,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
              "-classpath", System.getProperty("test.classes", "."),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
              "ExitValue$Run", String.valueOf(EXIT_CODE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            }, EXIT_CODE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
23569
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    93
        checkExitValue(new String[] { UnixCommands.findCommand("true") }, 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        checkPosixShellExitValue("exit", 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        checkPosixShellExitValue("exit 7", 7);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
23569
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
    99
        int sigoffset = UnixCommands.isSunOS ? 0 : 128;
1ef5563dedda 6943190: TEST_BUG: some tests in java/lang/Runtime/exec have hard-coded path to shell commands
igerasim
parents: 5506
diff changeset
   100
        checkPosixShellExitValue(UnixCommands.kill() + " -9 $$", sigoffset+9);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    public static class Run {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        public static void main (String[] argv) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            System.exit(Integer.parseInt(argv[0]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
}