Rollup merge of #95072 - tromey:parallel-debug-tests, r=tmiasko

Re-enable parallel debuginfo tests

Debuginfo tests are serialized due to some older version of LLDB.
However, that comment was last touched in 2014, so presumably these
older versions are long since obsolete.

Partially fixes bug #72719.
This commit is contained in:
Dylan DPC 2022-03-19 14:50:26 +01:00 committed by GitHub
commit 7de48eafa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -487,11 +487,6 @@ fn configure_lldb(config: &Config) -> Option<Config> {
return None; return None;
} }
// Some older versions of LLDB seem to have problems with multiple
// instances running in parallel, so only run one test thread at a
// time.
env::set_var("RUST_TEST_THREADS", "1");
Some(Config { debugger: Some(Debugger::Lldb), ..config.clone() }) Some(Config { debugger: Some(Debugger::Lldb), ..config.clone() })
} }