Skip to content

Commit

Permalink
Don't duplicate last cdb debuginfo test command
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Nov 16, 2022
1 parent a00f8ba commit 425a7af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/debuginfo/function-names.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
// Const generic parameter
// cdb-command:x a!function_names::const_generic_fn*
// cdb-check:[...] a!function_names::const_generic_fn_bool<false> (void)
// cdb-check:[...] a!function_names::const_generic_fn_non_int<CONST$6348c650c7b26618> (void)
// cdb-check:[...] a!function_names::const_generic_fn_unsigned_int<14> (void)
// cdb-check:[...] a!function_names::const_generic_fn_signed_int<-7> (void)
// cdb-check:[...] a!function_names::const_generic_fn_non_int<CONST$6348c650c7b26618> (void)

#![allow(unused_variables)]
#![feature(omit_gdb_pretty_printer_section)]
Expand Down
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ impl<'test> TestCx<'test> {
script_str.push_str("\n");
}

script_str.push_str("\nqq\n"); // Quit the debugger (including remote debugger, if any)
script_str.push_str("qq\n"); // Quit the debugger (including remote debugger, if any)

// Write the script into a file
debug!("script_str = {}", script_str);
Expand Down

0 comments on commit 425a7af

Please sign in to comment.