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 58b33ad commit d23a650Copy full SHA for d23a650
src/tools/compiletest/src/runtest.rs
@@ -647,6 +647,11 @@ actual:\n\
647
exe_file.to_str().unwrap()
648
.replace(r"\", r"\\")));
649
650
+ // Force GDB to print values in the Rust format.
651
+ if self.config.gdb_native_rust {
652
+ script_str.push_str("set language rust\n");
653
+ }
654
+
655
// Add line breakpoints
656
for line in &breakpoint_lines {
657
script_str.push_str(&format!("break '{}':{}\n",
0 commit comments