diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-12-13 21:14:08 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-12-24 19:59:53 -0800 |
| commit | 282f3d99a5ad85acbc58c03b5dfcdabf649c0c85 (patch) | |
| tree | ec391a6b37f99ba63cadb50757040e92f432c1b4 /src/compiletest | |
| parent | 39dbcd7b012da733f378b0fadf1e7d2519dc0d0c (diff) | |
| download | rust-282f3d99a5ad85acbc58c03b5dfcdabf649c0c85.tar.gz rust-282f3d99a5ad85acbc58c03b5dfcdabf649c0c85.zip | |
Test fixes and rebase problems
Note that this removes a number of run-pass tests which are exercising behavior of the old runtime. This functionality no longer exists and is thoroughly tested inside of libgreen and libnative. There isn't really the notion of "starting the runtime" any more. The major notion now is "bootstrapping the initial task".
Diffstat (limited to 'src/compiletest')
| -rw-r--r-- | src/compiletest/compiletest.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiletest/compiletest.rs b/src/compiletest/compiletest.rs index 0fb75b7c8e0..89b6f06abfc 100644 --- a/src/compiletest/compiletest.rs +++ b/src/compiletest/compiletest.rs @@ -16,7 +16,7 @@ extern mod extra; use std::os; -use std::rt; +use std::io; use std::io::fs; use extra::getopts; @@ -234,7 +234,7 @@ pub fn run_tests(config: &config) { // sadly osx needs some file descriptor limits raised for running tests in // parallel (especially when we have lots and lots of child processes). // For context, see #8904 - rt::test::prepare_for_lots_of_tests(); + io::test::raise_fd_limit(); let res = test::run_tests_console(&opts, tests); if !res { fail!("Some tests failed"); } } |
