From 7fadda6e7ed8a26c297a17759b350e77bebb39dc Mon Sep 17 00:00:00 2001 From: Michael Woerister Date: Thu, 16 Oct 2014 10:18:54 +0200 Subject: [PATCH] debuginfo: Let LLDB tests run in parallel again since our min-supported version has no problems with that. --- src/compiletest/compiletest.rs | 12 +----------- 1 file changed, 1 insertion(+), 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