about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJieyou Xu <jieyouxu@outlook.com>2025-07-05 15:35:26 +0800
committerJieyou Xu <jieyouxu@outlook.com>2025-07-12 15:46:08 +0800
commit33668c1b0e02c6c6f8d195bc6545ceef5297cc87 (patch)
tree9e19bd294807da6c65573fbcbd270bca50d9fa8c /src
parent9535feebd5741a55fc24e84060e82d41a75dac6e (diff)
downloadrust-33668c1b0e02c6c6f8d195bc6545ceef5297cc87.tar.gz
rust-33668c1b0e02c6c6f8d195bc6545ceef5297cc87.zip
Remove outdated debugger version warning
Diffstat (limited to 'src')
-rw-r--r--src/tools/compiletest/src/debuggers.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/tools/compiletest/src/debuggers.rs b/src/tools/compiletest/src/debuggers.rs
index 0edc3d82d4f..8afe3289fa4 100644
--- a/src/tools/compiletest/src/debuggers.rs
+++ b/src/tools/compiletest/src/debuggers.rs
@@ -51,17 +51,6 @@ pub(crate) fn configure_gdb(config: &Config) -> Option<Arc<Config>> {
 pub(crate) fn configure_lldb(config: &Config) -> Option<Arc<Config>> {
     config.lldb_python_dir.as_ref()?;
 
-    // FIXME: this is super old
-    if let Some(350) = config.lldb_version {
-        println!(
-            "WARNING: The used version of LLDB (350) has a \
-             known issue that breaks debuginfo tests. See \
-             issue #32520 for more information. Skipping all \
-             LLDB-based tests!",
-        );
-        return None;
-    }
-
     Some(Arc::new(Config { debugger: Some(Debugger::Lldb), ..config.clone() }))
 }