about summary refs log tree commit diff
path: root/src/libtest/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-02-28 12:55:30 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-03-01 10:06:20 -0800
commit2cb83fdd7ea4e76d4b1c830a97480521cc405625 (patch)
treedc3f78a323c4d2c875fdb98f1b2b9d49b70759ef /src/libtest/lib.rs
parent1ee94a1336071fb0319b23a6c73b3d83ccd66bdf (diff)
downloadrust-2cb83fdd7ea4e76d4b1c830a97480521cc405625.tar.gz
rust-2cb83fdd7ea4e76d4b1c830a97480521cc405625.zip
std: Switch stdout/stderr to buffered by default
Similarly to #12422 which made stdin buffered by default, this commit makes the
output streams also buffered by default. Now that buffered writers will flush
their contents when they are dropped, I don't believe that there's no reason why
the output shouldn't be buffered by default, which is what you want in 90% of
cases.

As with stdin, there are new stdout_raw() and stderr_raw() functions to get
unbuffered streams to stdout/stderr.
Diffstat (limited to 'src/libtest/lib.rs')
-rw-r--r--src/libtest/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs
index 3162fe02a0f..0e062003053 100644
--- a/src/libtest/lib.rs
+++ b/src/libtest/lib.rs
@@ -415,8 +415,8 @@ impl<T: Writer> ConsoleTestState<T> {
             Some(ref path) => Some(try!(File::create(path))),
             None => None
         };
-        let out = match term::Terminal::new(io::stdout()) {
-            Err(_) => Raw(io::stdout()),
+        let out = match term::Terminal::new(io::stdio::stdout_raw()) {
+            Err(_) => Raw(io::stdio::stdout_raw()),
             Ok(t) => Pretty(t)
         };
         Ok(ConsoleTestState {