diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-12-22 10:52:31 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-12-22 10:52:32 -0500 |
commit | fe33faff35a8ee19db823149e764e3373e603bb9 (patch) | |
tree | 463770a411ffac37bc1edef0d217ab2ae8930717 /gdb | |
parent | 491d01d3da18fb61fa6c7c61c091b4cb8c5773f7 (diff) | |
download | gdb-fe33faff35a8ee19db823149e764e3373e603bb9.zip gdb-fe33faff35a8ee19db823149e764e3373e603bb9.tar.gz gdb-fe33faff35a8ee19db823149e764e3373e603bb9.tar.bz2 |
Remove HP-UX reference in foll-vfork.exp
One more I just found.
Tested with native, native-gdbserver and native-extended-gdbserver on
Linux.
gdb/testsuite/ChangeLog:
* gdb.base/foll-vork.exp: Remove HP-UX special case.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/foll-vfork.exp | 42 |
2 files changed, 10 insertions, 36 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 888c60c..2d4e795 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-12-22 Simon Marchi <simon.marchi@ericsson.com> + + * gdb.base/foll-vork.exp: Remove HP-UX special case. + 2015-12-22 Thomas Preud'homme <thomas.preudhomme@arm.com> * lib/mi-support.exp (mi_run_cmd_full): Add an expect for the CLI jump diff --git a/gdb/testsuite/gdb.base/foll-vfork.exp b/gdb/testsuite/gdb.base/foll-vfork.exp index 0356598..bf4ea43 100644 --- a/gdb/testsuite/gdb.base/foll-vfork.exp +++ b/gdb/testsuite/gdb.base/foll-vfork.exp @@ -222,18 +222,8 @@ proc tcatch_vfork_then_parent_follow {} { gdb_test_no_output "set follow-fork parent" gdb_test "tcatch vfork" "Catchpoint .*(vfork).*" - - # HP-UX 10.20 seems to stop you in "vfork", while more recent - # HP-UXs stop you in "_vfork". - set test "continue to vfork" - gdb_test_multiple "continue" $test { - -re "0x\[0-9a-fA-F\]*.*(vfork|__kernel_v?syscall).*$gdb_prompt " { - pass $test - } - -re "vfork \\(\\) at.*$gdb_prompt " { - pass $test - } - } + gdb_test "continue" "0x\[0-9a-fA-F\]*.*(vfork|__kernel_v?syscall).*" \ + "continue to vfork" set linenum [gdb_get_line_number "pid = vfork ();"] set test "finish" @@ -264,18 +254,8 @@ proc tcatch_vfork_then_child_follow_exec {} { gdb_test_no_output "set follow-fork child" gdb_test "tcatch vfork" "Catchpoint .*(vfork).*" - - # HP-UX 10.20 seems to stop you in "vfork", while more recent HP-UXs - # stop you in "_vfork". - set test "continue to vfork" - gdb_test_multiple "continue" $test { - -re "vfork \\(\\) at .*$gdb_prompt $" { - pass $test - } - -re "0x\[0-9a-fA-F\]*.*(vfork|__kernel_v?syscall).*$gdb_prompt " { - pass $test - } - } + gdb_test "continue" "0x\[0-9a-fA-F\]*.*(vfork|__kernel_v?syscall).*" \ + "continue to vfork" set linenum1 [gdb_get_line_number "pid = vfork ();"] set linenum2 [gdb_get_line_number "printf(\"Hello from vforked-prog" ${srcfile2}] @@ -310,18 +290,8 @@ proc tcatch_vfork_then_child_follow_exit {} { gdb_test_no_output "set follow-fork child" gdb_test "tcatch vfork" "Catchpoint .*(vfork).*" - - # HP-UX 10.20 seems to stop you in "vfork", while more recent HP-UXs - # stop you in "_vfork". - set test "continue to vfork" - gdb_test_multiple "continue" $test { - -re "vfork \\(\\) at .*$gdb_prompt $" { - pass $test - } - -re "0x\[0-9a-fA-F\]*.*(vfork|__kernel_v?syscall).*$gdb_prompt " { - pass $test - } - } + gdb_test "continue" "0x\[0-9a-fA-F\]*.*(vfork|__kernel_v?syscall).*" \ + "continue to vfork" set test "finish" gdb_test_multiple "finish" $test { |