--- old/test/java/lang/Runtime/exec/Status.java 2014-02-26 22:54:38.299721265 +0400 +++ new/test/java/lang/Runtime/exec/Status.java 2014-02-26 22:54:37.643401512 +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.false_()); int s = p.waitFor(); System.out.print(s); System.out.print(' ');