Skip to content

Commit d9a6a63

Browse files
committed
Fix build breakage
1 parent 77b8144 commit d9a6a63

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

src/compiletest/errors.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import common::config;
2+
import io::ReaderUtil;
23

34
export load_errors;
45
export expected_error;

src/compiletest/header.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import option;
22
import str;
33

44
import common::config;
5+
import io::ReaderUtil;
56

67
export test_props;
78
export load_props;

src/compiletest/procsrv.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import run::spawn_process;
2-
import io::WriterUtil;
2+
import io::{ReaderUtil, WriterUtil};
33
import libc::{c_int, pid_t};
4-
54
import pipes::chan;
65

76
export run;

src/test/bench/core-std.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import std::time::precise_time_s;
66
import std::map;
77
import std::map::{map, hashmap};
88

9-
import io::Reader;
9+
import io::{Reader, ReaderUtil};
1010

1111
fn main(argv: ~[~str]) {
1212
#macro[

src/test/bench/shootout-k-nucleotide-pipes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std;
66
import std::map;
77
import std::map::hashmap;
88
import std::sort;
9-
9+
import io::ReaderUtil;
1010
import pipes::{stream, port, chan};
1111

1212
// given a map, print a sorted version of it

src/test/bench/shootout-k-nucleotide.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use std;
66
import std::map;
77
import std::map::hashmap;
88
import std::sort;
9+
import io::ReaderUtil;
910

1011
// given a map, print a sorted version of it
1112
fn sort_and_fmt(mm: hashmap<~[u8], uint>, total: uint) -> ~str {

src/test/bench/sudoku.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std;
22

33
import std::bitv;
4-
import io::WriterUtil;
4+
import io::{ReaderUtil, WriterUtil};
55

66
// Computes a single solution to a given 9x9 sudoku
77
//

0 commit comments

Comments
 (0)