Skip to content

Commit 197a600

Browse files
committed
---
yaml --- r: 39612 b: refs/heads/incoming c: 2d7b96a h: refs/heads/master v: v3
1 parent 94ec7c0 commit 197a600

File tree

7 files changed

+30
-2
lines changed

7 files changed

+30
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: 5b2b13bff81d341f243a9a902d8779ef82e2d7fd
9+
refs/heads/incoming: 2d7b96ab72656c3f3e5a2d9b05ddcddbd1b2b2dd
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/compiletest/common.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use cmp;
12+
1113
enum mode { mode_compile_fail, mode_run_fail, mode_run_pass, mode_pretty, }
1214

1315
impl mode : cmp::Eq {

branches/incoming/src/compiletest/errors.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
// except according to those terms.
1010

1111
use common::config;
12+
use io;
1213
use io::ReaderUtil;
14+
use str;
1315

1416
export load_errors;
1517
export expected_error;

branches/incoming/src/compiletest/header.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use common;
1112
use common::config;
13+
use io;
1214
use io::ReaderUtil;
15+
use os;
16+
use str;
1317

1418
export test_props;
1519
export load_props;

branches/incoming/src/compiletest/procsrv.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,16 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use run::spawn_process;
11+
use io;
1212
use io::{ReaderUtil, WriterUtil};
13+
use libc;
1314
use libc::{c_int, pid_t};
15+
use os;
16+
use run;
17+
use run::spawn_process;
18+
use pipes;
19+
use str;
20+
use task;
1421

1522
export run;
1623

branches/incoming/src/compiletest/runtest.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,25 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use io;
1112
use io::WriterUtil;
13+
use os;
14+
use str;
15+
use uint;
16+
use vec;
1217

18+
use common;
1319
use common::mode_run_pass;
1420
use common::mode_run_fail;
1521
use common::mode_compile_fail;
1622
use common::mode_pretty;
1723
use common::config;
24+
use errors;
25+
use header;
1826
use header::load_props;
1927
use header::test_props;
28+
use procsrv;
29+
use util;
2030
use util::logv;
2131

2232
export run;

branches/incoming/src/compiletest/util.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use io;
12+
use os;
1113
use os::getenv;
1214

15+
use common;
1316
use common::config;
1417

1518
fn make_new_path(path: ~str) -> ~str {

0 commit comments

Comments
 (0)