[binutils-gdb] [gdb/testsuite] Fix gdb.python/py-event-load.exp for remote target

Tom de Vries vries@sourceware.org
Fri Mar 10 15:34:09 GMT 2023


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=69b956fbe93e5283d8145edf4c86fde827a77c7b

commit 69b956fbe93e5283d8145edf4c86fde827a77c7b
Author: Tom de Vries <tdevries@suse.de>
Date:   Fri Mar 10 16:34:04 2023 +0100

    [gdb/testsuite] Fix gdb.python/py-event-load.exp for remote target
    
    Fix test-case gdb.python/py-event-load.exp for target board
    remote-gdbserver-on-localhost using gdb_download_shlib.
    
    Tested on x86_64-linux.

Diff:
---
 gdb/testsuite/gdb.python/py-event-load.exp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gdb/testsuite/gdb.python/py-event-load.exp b/gdb/testsuite/gdb.python/py-event-load.exp
index ac2331cdd8b..1375cf675d0 100644
--- a/gdb/testsuite/gdb.python/py-event-load.exp
+++ b/gdb/testsuite/gdb.python/py-event-load.exp
@@ -36,20 +36,21 @@ if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
 set testfile2 py-events-shlib
 set srcfile2 ${testfile2}.c
 set binfile2 [standard_output_file ${testfile2}.so]
-set binfile2_dlopen [shlib_target_file ${testfile2}.so]
 if {[gdb_compile_shlib "${srcdir}/${subdir}/${srcfile2}" \
 	 ${binfile2} {debug}] != ""} {
     untested "failed to compile shared library"
     return -1
 }
 
+set binfile2_dlopen [gdb_download_shlib $binfile2]
+
 clean_restart $testfile
 
 if {![runto_main]} {
     return
 }
 
-gdb_test_no_output "set var libname = \"$binfile2_dlopen\""
+gdb_test_no_output "set var libname = \"$binfile2_dlopen\"" "set var libname"
 
 set pyfile [gdb_remote_download host ${srcdir}/${subdir}/py-event-load.py]
 gdb_test_no_output "source ${pyfile}" "load python file"


More information about the Gdb-cvs mailing list