Skip to content

Commit e1a82c9

Browse files
committed
Delete compiletest support for gdbg
1 parent 95ae9b8 commit e1a82c9

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/tools/compiletest/src/runtest.rs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -856,17 +856,7 @@ impl<'test> TestCx<'test> {
856856
}
857857

858858
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-
PREFIXES
869-
};
859+
let prefixes = &["gdb"];
870860

871861
let dbg_cmds = DebuggerCommands::parse_from(
872862
&self.testpaths.file,

0 commit comments

Comments
 (0)