diff options
author | Pedro Alves <palves@redhat.com> | 2017-10-12 20:06:59 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2017-10-12 20:06:59 +0100 |
commit | 6bf0052db8bbeed41e512d1d3ce14ba2a446723d (patch) | |
tree | ddb2e400f5969f241d2dd9d7df2b7da725338c3f | |
parent | e48ef82dd2fc85560d14a45a632c82eaaadca7ce (diff) | |
download | gdb-6bf0052db8bbeed41e512d1d3ce14ba2a446723d.zip gdb-6bf0052db8bbeed41e512d1d3ce14ba2a446723d.tar.gz gdb-6bf0052db8bbeed41e512d1d3ce14ba2a446723d.tar.bz2 |
Run gdb.base/catch-fork-static.exp on remote target boards
Another case of a stale check. We support following forks in the
remote protocol nowadays.
gdb/testsuite/ChangeLog:
2017-10-12 Pedro Alves <palves@redhat.com>
Simon Marchi <simon.marchi@polymtl.ca>
* gdb.base/catch-fork-static.exp: No longer skip on is_remote
target boards.
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/catch-fork-static.exp | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 4876914..3d2df7d 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,6 +1,12 @@ 2017-10-12 Pedro Alves <palves@redhat.com> Simon Marchi <simon.marchi@polymtl.ca> + * gdb.base/catch-fork-static.exp: No longer skip on is_remote + target boards. + +2017-10-12 Pedro Alves <palves@redhat.com> + Simon Marchi <simon.marchi@polymtl.ca> + * gdb.base/checkpoint.exp: Don't check is_remote or isnative. Instead skip if there's any gdb_protocol set. diff --git a/gdb/testsuite/gdb.base/catch-fork-static.exp b/gdb/testsuite/gdb.base/catch-fork-static.exp index 2a96004..0a4bc63 100644 --- a/gdb/testsuite/gdb.base/catch-fork-static.exp +++ b/gdb/testsuite/gdb.base/catch-fork-static.exp @@ -21,10 +21,6 @@ # ld.so probes before reaching main, and ptrace flags were set then. But a # static executable would just keep running and never catch the fork. -if { [is_remote target] || ![isnative] } then { - continue -} - # Until "catch fork" is implemented on other targets... # if { ![istarget "*-*-linux*"] && ![istarget "*-*-openbsd*"] } then { |