(String command)
| 101 | } |
| 102 | |
| 103 | private static int system(String command) |
| 104 | throws IOException, InterruptedException { |
| 105 | Runtime r = Runtime.getRuntime(); |
| 106 | Process p = r.exec(command); |
| 107 | p.waitFor(); |
| 108 | return p.exitValue(); |
| 109 | } |
| 110 | |
| 111 | private static void exit(int status) throws Exception { |
| 112 | if (zkserver != null) { |
no test coverage detected