Skip to content

Commit

Permalink
Rollup merge of rust-lang#95072 - tromey:parallel-debug-tests, r=tmiasko
Browse files Browse the repository at this point in the history
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 rust-lang#72719.
  • Loading branch information
Dylan-DPC committed Mar 19, 2022
2 parents 6a73024 + 05e9fcb commit 7de48ea
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/tools/compiletest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,11 +487,6 @@ fn configure_lldb(config: &Config) -> Option<Config> {
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() })
}

Expand Down

0 comments on commit 7de48ea

Please sign in to comment.