about summary refs log tree commit diff
path: root/src/compiletest/util.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-13 18:48:47 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-24 14:21:57 -0700
commit61ed2cfb5516f76487509766b1054275f1340f70 (patch)
tree815c604da80638dfc659220ee9f697b074954f47 /src/compiletest/util.rs
parent4eb53360541baf3e6df36dc0f0766bc7c1c9f8be (diff)
downloadrust-61ed2cfb5516f76487509766b1054275f1340f70.tar.gz
rust-61ed2cfb5516f76487509766b1054275f1340f70.zip
Remove even more of std::io
Big fish fried here:

    extra::json
    most of the compiler
    extra::io_util removed
    extra::fileinput removed

Fish left to fry

    extra::ebml
Diffstat (limited to 'src/compiletest/util.rs')
-rw-r--r--src/compiletest/util.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiletest/util.rs b/src/compiletest/util.rs
index 04ef180299d..ae4a25b8008 100644
--- a/src/compiletest/util.rs
+++ b/src/compiletest/util.rs
@@ -10,7 +10,6 @@
 
 use common::config;
 
-use std::io;
 use std::os::getenv;
 
 /// Conversion table from triple OS name to Rust SYSNAME
@@ -64,5 +63,5 @@ pub fn path_div() -> ~str { ~";" }
 
 pub fn logv(config: &config, s: ~str) {
     debug!("{}", s);
-    if config.verbose { io::println(s); }
+    if config.verbose { println(s); }
 }