Skip to content

Commit

Permalink
sys tests fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Kurilov committed Jun 30, 2017
1 parent 2dd6e4c commit 97f8d3a
Show file tree
Hide file tree
Showing 37 changed files with 7 additions and 4,897 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static void setUpClass()
TimeUnit.SECONDS.timedJoin(runner, TIME_LIMIT + 5);
FINISHED_IN_TIME = !runner.isAlive();
runner.interrupt();
LoadJobLogFileManager.flush(STEP_NAME);
LoadJobLogFileManager.flushAll();
STD_OUTPUT = STD_OUT_STREAM.stopRecordingAndGet();
TimeUnit.SECONDS.sleep(10);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public static void setUpClass()
TimeUnit.MINUTES.timedJoin(runner, 65); // 1m + up to 5s for the precondition job
FINISHED_IN_TIME = !runner.isAlive();
runner.interrupt();
LoadJobLogFileManager.flush(STEP_NAME);
LoadJobLogFileManager.flushAll();
TimeUnit.SECONDS.sleep(10);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public static void setUpClass()
TimeUnit.SECONDS.timedJoin(runner, 1000);
FINISHED_IN_TIME = !runner.isAlive();
runner.interrupt();
LoadJobLogFileManager.flush(STEP_NAME);
LoadJobLogFileManager.flushAll();
TimeUnit.SECONDS.sleep(10);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void setUpClass()
} catch(final Throwable t) {
LogUtil.exception(Level.ERROR, t, "Failed to run the scenario");
}
LoadJobLogFileManager.flush(STEP_NAME);
LoadJobLogFileManager.flushAll();
TimeUnit.SECONDS.sleep(10);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static void setUpClass()
} catch(final Throwable t) {
LogUtil.exception(Level.ERROR, t, "Failed to run the scenario");
}
LoadJobLogFileManager.flush(STEP_NAME);
LoadJobLogFileManager.flushAll();
TimeUnit.SECONDS.sleep(10);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public static void setUpClass()
} catch(final Throwable t) {
LogUtil.exception(Level.ERROR, t, "Failed to run the scenario");
}
LoadJobLogFileManager.flush(STEP_NAME);
LoadJobLogFileManager.flushAll();
TimeUnit.SECONDS.sleep(10);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public static void setUpClass()
TimeUnit.SECONDS.timedJoin(runner, 100);
FINISHED_IN_TIME = !runner.isAlive();
runner.interrupt();
LoadJobLogFileManager.flush(STEP_NAME);
LoadJobLogFileManager.flushAll();
TimeUnit.SECONDS.sleep(10);
}

Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 97f8d3a

Please sign in to comment.