about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-03-17 21:22:35 -0600
committerTom Tromey <tom@tromey.com>2022-03-18 07:16:57 -0600
commit05e9fcb704e91b38e31f6b209748fec975e1a0be (patch)
tree9d816c02414534b87b66c9d9e5bd87c1c13c6b13
parent691d1c1e12602c57237e9ccddac406ebd0c54082 (diff)
downloadrust-05e9fcb704e91b38e31f6b209748fec975e1a0be.tar.gz
rust-05e9fcb704e91b38e31f6b209748fec975e1a0be.zip
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.
-rw-r--r--src/tools/compiletest/src/main.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/tools/compiletest/src/main.rs b/src/tools/compiletest/src/main.rs
index 3f2cd3ae232..503b624114a 100644
--- a/src/tools/compiletest/src/main.rs
+++ b/src/tools/compiletest/src/main.rs
@@ -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() })
 }