Skip to content

Commit 33668c1

Browse files
committed
Remove outdated debugger version warning
1 parent 9535fee commit 33668c1

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/tools/compiletest/src/debuggers.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,6 @@ pub(crate) fn configure_gdb(config: &Config) -> Option<Arc<Config>> {
5151
pub(crate) fn configure_lldb(config: &Config) -> Option<Arc<Config>> {
5252
config.lldb_python_dir.as_ref()?;
5353

54-
// FIXME: this is super old
55-
if let Some(350) = config.lldb_version {
56-
println!(
57-
"WARNING: The used version of LLDB (350) has a \
58-
known issue that breaks debuginfo tests. See \
59-
issue #32520 for more information. Skipping all \
60-
LLDB-based tests!",
61-
);
62-
return None;
63-
}
64-
6554
Some(Arc::new(Config { debugger: Some(Debugger::Lldb), ..config.clone() }))
6655
}
6756

0 commit comments

Comments
 (0)