ExecuteWatchdog watchdog = createWatchdog();
exitValue = executeAsForked(test, watchdog, casesFile);
// null watchdog means no timeout, you'd better not check
// with null
if (watchdog != null) {
wasKilled = watchdog.killedProcess();
}
actOnTestResult(exitValue, wasKilled, test, "Tests");
} catch(IOException e) {
log(e.toString(), Project.MSG_ERR);
throw new BuildException(e);