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 95ae9b8 commit e1a82c9Copy full SHA for e1a82c9
src/tools/compiletest/src/runtest.rs
@@ -856,17 +856,7 @@ impl<'test> TestCx<'test> {
856
}
857
858
fn run_debuginfo_gdb_test_no_opt(&self) {
859
- let prefixes = if self.config.gdb_native_rust {
860
- // GDB with Rust
861
- static PREFIXES: &[&str] = &["gdb", "gdbr"];
862
- println!("NOTE: compiletest thinks it is using GDB with native rust support");
863
- PREFIXES
864
- } else {
865
- // Generic GDB
866
- static PREFIXES: &[&str] = &["gdb", "gdbg"];
867
- println!("NOTE: compiletest thinks it is using GDB without native rust support");
868
869
- };
+ let prefixes = &["gdb"];
870
871
let dbg_cmds = DebuggerCommands::parse_from(
872
&self.testpaths.file,
0 commit comments