--- old/test/java/lang/Runtime/exec/Status.java 2014-02-27 13:19:15.438393816 +0400 +++ new/test/java/lang/Runtime/exec/Status.java 2014-02-27 13:19:14.882393800 +0400 @@ -35,10 +35,12 @@ public static void main(String args[]) throws Exception { - if (!System.getProperty("os.name").equals("Linux")) + if (!System.getProperty("os.name").equals("Linux")) { + System.err.println("Only for Linux"); return; + } for (int i = 0; i < N; i++) { - Process p = Runtime.getRuntime().exec("false"); + Process p = Runtime.getRuntime().exec(UnixCommands.findCommand("false")); int s = p.waitFor(); System.out.print(s); System.out.print(' ');