(String format, Object... args)
| 239 | } |
| 240 | |
| 241 | private static void fail(String format, Object... args) { |
| 242 | System.err.printf(format, args); |
| 243 | System.err.println(); |
| 244 | System.exit(1); |
| 245 | } |
| 246 | |
| 247 | // Runs benchmark function f for the specified time budget |
| 248 | // (which we may exceed by a factor of two) or number of iterations, |
no test coverage detected