We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9535fee commit 33668c1Copy full SHA for 33668c1
src/tools/compiletest/src/debuggers.rs
@@ -51,17 +51,6 @@ pub(crate) fn configure_gdb(config: &Config) -> Option<Arc<Config>> {
51
pub(crate) fn configure_lldb(config: &Config) -> Option<Arc<Config>> {
52
config.lldb_python_dir.as_ref()?;
53
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
-
65
Some(Arc::new(Config { debugger: Some(Debugger::Lldb), ..config.clone() }))
66
}
67
0 commit comments