diff options
author | Mark Kettenis <kettenis@gnu.org> | 2008-01-26 13:56:37 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2008-01-26 13:56:37 +0000 |
commit | 5def828572f6e7176cd8fef40742e45a365f24d3 (patch) | |
tree | c30221284900d84cdf508c573305d4807346c86d /gdb/testsuite/gdb.gdb | |
parent | 8ee35d562fcd9c8698520e668db0f8d067d28f44 (diff) | |
download | gdb-5def828572f6e7176cd8fef40742e45a365f24d3.zip gdb-5def828572f6e7176cd8fef40742e45a365f24d3.tar.gz gdb-5def828572f6e7176cd8fef40742e45a365f24d3.tar.bz2 |
* gdb.gdb/selftest.exp (do_steps_and_nexts): Add more matches.
Diffstat (limited to 'gdb/testsuite/gdb.gdb')
-rw-r--r-- | gdb/testsuite/gdb.gdb/selftest.exp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.gdb/selftest.exp b/gdb/testsuite/gdb.gdb/selftest.exp index 1c02678..4abe21a 100644 --- a/gdb/testsuite/gdb.gdb/selftest.exp +++ b/gdb/testsuite/gdb.gdb/selftest.exp @@ -75,10 +75,18 @@ proc do_steps_and_nexts {} { set description "step over execarg initialization" set command "step" } + -re ".*pidarg = NULL.*$gdb_prompt $" { + set description "step over pidarg initialization" + set command "step" + } -re ".*corearg = NULL.*$gdb_prompt $" { set description "step over corearg initialization" set command "step" } + -re ".*pid_or_core_arg = NULL.*$gdb_prompt $" { + set description "step over pid_or_core_arg initialization" + set command "step" + } -re ".*cdarg = NULL.*$gdb_prompt $" { set description "step over cdarg initialization" set command "step" |