aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java')
-rw-r--r--tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java b/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
index 3f4de4b..54fa248 100644
--- a/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
+++ b/tests/test-extensions/net/sourceforge/jnlp/LoggingBottleneck.java
@@ -201,15 +201,18 @@ public class LoggingBottleneck {
private void stdout(String idded) throws IOException {
DEFAULT_STDOUT_WRITER.write(idded);
DEFAULT_STDOUT_WRITER.newLine();
+ DEFAULT_STDOUT_WRITER.flush();
}
private void stderr(String idded) throws IOException {
DEFAULT_STDERR_WRITER.write(idded);
DEFAULT_STDERR_WRITER.newLine();
+ DEFAULT_STDERR_WRITER.flush();
}
private void stdeall(String idded) throws IOException {
DEFAULT_STDLOGS_WRITER.write(idded);
DEFAULT_STDLOGS_WRITER.newLine();
+ DEFAULT_STDLOGS_WRITER.flush();
}
}