about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-08-26 13:51:10 -0700
committerBrian Anderson <banderson@mozilla.com>2012-08-26 13:51:10 -0700
commitd9a6a6365327ac156ef3102e2b7efae1b2be5934 (patch)
tree7da77c02305f6a9e7cd9d3097270a81c13cead89
parent77b8144295fdc19bf7700e3db9551fd190ecebcb (diff)
Fix build breakage
-rw-r--r--src/compiletest/errors.rs1
-rw-r--r--src/compiletest/header.rs1
-rw-r--r--src/compiletest/procsrv.rs3
-rw-r--r--src/test/bench/core-std.rs2
-rw-r--r--src/test/bench/shootout-k-nucleotide-pipes.rs2
-rw-r--r--src/test/bench/shootout-k-nucleotide.rs1
-rw-r--r--src/test/bench/sudoku.rs2
7 files changed, 7 insertions, 5 deletions
diff --git a/src/compiletest/errors.rs b/src/compiletest/errors.rs
index 9dde2f86f96..b517183df5c 100644
--- a/src/compiletest/errors.rs
+++ b/src/compiletest/errors.rs
@@ -1,4 +1,5 @@
 import common::config;
+import io::ReaderUtil;
 
 export load_errors;
 export expected_error;
diff --git a/src/compiletest/header.rs b/src/compiletest/header.rs
index 2905537d6a1..6767a3c70f8 100644
--- a/src/compiletest/header.rs
+++ b/src/compiletest/header.rs
@@ -2,6 +2,7 @@ import option;
 import str;
 
 import common::config;
+import io::ReaderUtil;
 
 export test_props;
 export load_props;
diff --git a/src/compiletest/procsrv.rs b/src/compiletest/procsrv.rs
index bd9f8f4385f..8d7fd194330 100644
--- a/src/compiletest/procsrv.rs
+++ b/src/compiletest/procsrv.rs
@@ -1,7 +1,6 @@
 import run::spawn_process;
-import io::WriterUtil;
+import io::{ReaderUtil, WriterUtil};
 import libc::{c_int, pid_t};
-
 import pipes::chan;
 
 export run;
diff --git a/src/test/bench/core-std.rs b/src/test/bench/core-std.rs
index 21525424b1b..6b5e02b24a6 100644
--- a/src/test/bench/core-std.rs
+++ b/src/test/bench/core-std.rs
@@ -6,7 +6,7 @@ import std::time::precise_time_s;
 import std::map;
 import std::map::{map, hashmap};
 
-import io::Reader;
+import io::{Reader, ReaderUtil};
 
 fn main(argv: ~[~str]) {
     #macro[
diff --git a/src/test/bench/shootout-k-nucleotide-pipes.rs b/src/test/bench/shootout-k-nucleotide-pipes.rs
index 4204a3110de..dbef8f0b693 100644
--- a/src/test/bench/shootout-k-nucleotide-pipes.rs
+++ b/src/test/bench/shootout-k-nucleotide-pipes.rs
@@ -6,7 +6,7 @@ use std;
 import std::map;
 import std::map::hashmap;
 import std::sort;
-
+import io::ReaderUtil;
 import pipes::{stream, port, chan};
 
 // given a map, print a sorted version of it
diff --git a/src/test/bench/shootout-k-nucleotide.rs b/src/test/bench/shootout-k-nucleotide.rs
index 54ff0cde9ef..5feb561abe4 100644
--- a/src/test/bench/shootout-k-nucleotide.rs
+++ b/src/test/bench/shootout-k-nucleotide.rs
@@ -6,6 +6,7 @@ use std;
 import std::map;
 import std::map::hashmap;
 import std::sort;
+import io::ReaderUtil;
 
 // given a map, print a sorted version of it
 fn sort_and_fmt(mm: hashmap<~[u8], uint>, total: uint) -> ~str { 
diff --git a/src/test/bench/sudoku.rs b/src/test/bench/sudoku.rs
index ef7442b22f2..113c31ef532 100644
--- a/src/test/bench/sudoku.rs
+++ b/src/test/bench/sudoku.rs
@@ -1,7 +1,7 @@
 use std;
 
 import std::bitv;
-import io::WriterUtil;
+import io::{ReaderUtil, WriterUtil};
 
 // Computes a single solution to a given 9x9 sudoku
 //