diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/py-prompt.exp')
-rw-r--r-- | gdb/testsuite/gdb.python/py-prompt.exp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.python/py-prompt.exp b/gdb/testsuite/gdb.python/py-prompt.exp index 0f7a3a4..6f22c5b 100644 --- a/gdb/testsuite/gdb.python/py-prompt.exp +++ b/gdb/testsuite/gdb.python/py-prompt.exp @@ -80,7 +80,8 @@ if {![can_spawn_for_attach]} { return 0 } -set testpid [spawn_wait_for_attach $binfile] +set test_spawn_id [spawn_wait_for_attach $binfile] +set testpid [spawn_id_get_pid $test_spawn_id] set GDBFLAGS [concat $tmp_gdbflags " -ex \"set pagination off\""] set GDBFLAGS [concat $GDBFLAGS " -ex \"set editing on\""] @@ -115,5 +116,5 @@ gdb_test "python print (\"'\" + str(p\[0\]) + \"'\")" "'$gdb_prompt_fail '" \ gdb_exit set GDBFLAGS $saved_gdbflags -exec kill -9 ${testpid} +kill_wait_spawned_process $test_spawn_id return 0 |