System.err.println("Process was running for " + executor.getWorkTime());
System.err.println("Program in test case " + testNumber + " exited with code " + executor.getCode());
if (!ise) { // если тесты были найдены и прочитаны
// код также будет выполняться, если была ComparisonFailedException - может быть ошибка времени выполнения
if (executor.isOutOfTime()) {
throw new TestingTimeLimitExceededException("Program is out of time");
}
if (executor.getCode() != 0) {
processMessage(program);
throw new RunTimeErrorException(message.toString());
}