Skip to content

Commit def11e0

Browse files
debuginfo: Let LLDB tests run in parallel again since our min-supported version has no problems with that.
1 parent 6b14f33 commit def11e0

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/compiletest/compiletest.rs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use std::io::fs;
2525
use std::from_str::FromStr;
2626
use getopts::{optopt, optflag, reqopt};
2727
use common::Config;
28-
use common::{Pretty, DebugInfoGdb, DebugInfoLldb, Codegen};
28+
use common::{Pretty, DebugInfoGdb, Codegen};
2929
use util::logv;
3030
use regex::Regex;
3131

@@ -235,16 +235,6 @@ pub fn run_tests(config: &Config) {
235235
os::setenv("RUST_TEST_TASKS","1");
236236
}
237237

238-
match config.mode {
239-
DebugInfoLldb => {
240-
// Some older versions of LLDB seem to have problems with multiple
241-
// instances running in parallel, so only run one test task at a
242-
// time.
243-
os::setenv("RUST_TEST_TASKS", "1");
244-
}
245-
_ => { /* proceed */ }
246-
}
247-
248238
let opts = test_opts(config);
249239
let tests = make_tests(config);
250240
// sadly osx needs some file descriptor limits raised for running tests in

0 commit comments

Comments
 (0)