Skip to content

Commit

Permalink
Re-enable parallel debuginfo tests
Browse files Browse the repository at this point in the history
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
tromey committed Mar 18, 2022
1 parent 691d1c1 commit 05e9fcb
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 05e9fcb

Please sign in to comment.