diff options
author | Yao Qi <yao@codesourcery.com> | 2014-09-30 21:08:15 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-10-11 11:13:34 +0800 |
commit | f90183d7e31b335b8a6048e46805509dc56332a4 (patch) | |
tree | 9f701cc74f8ee51a245cd9b52b891ce21fdff3f3 /gdb/testsuite/gdb.server/server-kill.c | |
parent | bf40a6078fd5bc24f54aaa1ca2bf44fa95b57c69 (diff) | |
download | gdb-f90183d7e31b335b8a6048e46805509dc56332a4.zip gdb-f90183d7e31b335b8a6048e46805509dc56332a4.tar.gz gdb-f90183d7e31b335b8a6048e46805509dc56332a4.tar.bz2 |
Get GDBserver pid on remote target
Hi,
We see the following fail in the real remote testing...
(gdb) Executing on target: kill -9 29808 (timeout = 300)
spawn [open ...]^M
sh: 1: kill: No such process
The test tries to kill gdbserver in this way:
set server_pid [exp_pid -i [board_info target fileid]]
remote_exec target "kill -9 $server_pid"
in native testing, we'll get the pid of spawned gdbserver, however, in
remote testing, we'll get the pid of ssh session, since we start
gdbserver on the remote target through ssh. The pid on build doesn't
exist on target.
In this patch, we tweak server-kill.c to get the parent pid, which is
the pid of GDBserver. GDB gets it and kill GDBserver on target.
gdb/testsuite:
2014-10-11 Yao Qi <yao@codesourcery.com>
* gdb.server/server-kill.c: Include sys/types.h and unistd.h.
(main): Call getppid.
* gdb.server/server-kill.exp: Set breakpoint on line "i = 0;"
and continue to it. Read variable "server_pid".
Diffstat (limited to 'gdb/testsuite/gdb.server/server-kill.c')
-rw-r--r-- | gdb/testsuite/gdb.server/server-kill.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.server/server-kill.c b/gdb/testsuite/gdb.server/server-kill.c index 8a7c74e..8369024 100644 --- a/gdb/testsuite/gdb.server/server-kill.c +++ b/gdb/testsuite/gdb.server/server-kill.c @@ -15,10 +15,18 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <sys/types.h> +#include <unistd.h> + +int server_pid; + int main (void) { - int i = 0; + int i; + + server_pid = getppid (); + i = 0; return i; } |