Skip to content

Commit ec2a8c9

Browse files
committed
---
yaml --- r: 52049 b: refs/heads/dist-snap c: 2d7b96a h: refs/heads/master i: 52047: 3598209 v: v3
1 parent a468435 commit ec2a8c9

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
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: 5b2b13bff81d341f243a9a902d8779ef82e2d7fd
10+
refs/heads/dist-snap: 2d7b96ab72656c3f3e5a2d9b05ddcddbd1b2b2dd
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/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/dist-snap/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/dist-snap/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/dist-snap/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/dist-snap/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/dist-snap/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)