[gdb/testsuite] Fix gdb.server/server-kill-python.exp for remote host
authorTom de Vries <tdevries@suse.de>
Tue, 28 Mar 2023 15:48:35 +0000 (17:48 +0200)
committerTom de Vries <tdevries@suse.de>
Tue, 28 Mar 2023 15:48:35 +0000 (17:48 +0200)
Fix test-case gdb.server/server-kill-python.exp for remote host using
gdb_remote_download.

Tested on x86_64-linux.

gdb/testsuite/gdb.server/server-kill-python.exp

index f6b373065a8a5663cbfdc0d25512c92df82249b3..ae85791c770c94c845c33c78c99b1d6145af9c55 100644 (file)
@@ -31,6 +31,7 @@ if {[build_executable "failed to prepare" ${testfile} \
 }
 
 set target_binfile [gdb_remote_download target $binfile]
+set host_binfile [gdb_remote_download host $binfile]
 
 # Start gdbserver.
 set res [gdbserver_spawn "${target_binfile}"]
@@ -47,6 +48,7 @@ puts $fd \
 "import gdb
 
 def do_gdb_stuff ():
+    gdb.execute ('file $host_binfile')
     gdb.execute ('target $gdbserver_protocol $gdbserver_gdbport')
     gdb.execute ('break $srcfile:$break_linenr')
     gdb.execute ('continue')
@@ -56,10 +58,12 @@ def do_gdb_stuff ():
 do_gdb_stuff()"
 close $fd
 
+set host_file1 [gdb_remote_download host $file1]
+
 # Now start GDB, sourcing the python command file we generated above.
 # Set the height and width so we don't end up at a paging prompt.
 if {[gdb_spawn_with_cmdline_opts \
-        "-quiet -iex \"set height 0\" -iex \"set width 0\" -ex \"source $file1\""] != 0} {
+        "-quiet -iex \"set height 0\" -iex \"set width 0\" -ex \"source $host_file1\""] != 0} {
     fail "spawn"
     return
 }