about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@posteo>2014-10-16 10:18:54 +0200
committerMichael Woerister <michaelwoerister@posteo>2014-10-22 10:47:46 +0200
commit7fadda6e7ed8a26c297a17759b350e77bebb39dc (patch)
treef878bbd08659f7802b79fab823b1ae1687593e87
parent93bd605c589c9eedcfed49ce3ed0791f198dc676 (diff)
downloadrust-7fadda6e7ed8a26c297a17759b350e77bebb39dc.tar.gz
rust-7fadda6e7ed8a26c297a17759b350e77bebb39dc.zip
debuginfo: Let LLDB tests run in parallel again since our min-supported version has no problems with that.
-rw-r--r--src/compiletest/compiletest.rs12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/compiletest/compiletest.rs b/src/compiletest/compiletest.rs
index 95bc79f1208..28aaca1776b 100644
--- a/src/compiletest/compiletest.rs
+++ b/src/compiletest/compiletest.rs
@@ -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;
 
@@ -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