* gdb.base/gcore.exp (capture_command_output): Use

gdb_test_multiple.
This commit is contained in:
Daniel Jacobowitz 2010-02-01 17:15:36 +00:00
parent 0e05dfcb73
commit db25f29d62
2 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.base/gcore.exp (capture_command_output): Use
gdb_test_multiple.
2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.arch/thumb2-it.S (it_breakpoints): New function.

View File

@ -69,14 +69,10 @@ proc capture_command_output { command prefix } {
global expect_out
set output_string ""
send_gdb "$command\n"
gdb_expect {
gdb_test_multiple "$command" "capture_command_output for $command" {
-re "${command}\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
set output_string $expect_out(1,string)
}
default {
fail "capture_command_output failed on $command."
}
}
return $output_string
}