Skip to content

Commit

Permalink
debuginfo: Let LLDB tests run in parallel again since our min-support…
Browse files Browse the repository at this point in the history
…ed version has no problems with that.
  • Loading branch information
michaelwoerister committed Oct 22, 2014
1 parent 93bd605 commit 7fadda6
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/compiletest/compiletest.rs
Expand Up @@ -25,7 +25,7 @@ use std::io::fs;
use std::from_str::FromStr;
use getopts::{optopt, optflag, reqopt};
use common::Config;
use common::{Pretty, DebugInfoGdb, DebugInfoLldb, Codegen};
use common::{Pretty, DebugInfoGdb, Codegen};
use util::logv;
use regex::Regex;

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

match config.mode {
DebugInfoLldb => {
// Some older versions of LLDB seem to have problems with multiple
// instances running in parallel, so only run one test task at a
// time.
os::setenv("RUST_TEST_TASKS", "1");
}
_ => { /* proceed */ }
}

let opts = test_opts(config);
let tests = make_tests(config);
// sadly osx needs some file descriptor limits raised for running tests in
Expand Down

0 comments on commit 7fadda6

Please sign in to comment.