[6/7,gdb/testsuite] fix test gdb.base/info-shared.exp for remote execution

Message ID 20221025162946.727169-7-ivan.tetyushkin@syntacore.com
State New
Headers
Series introduce get_runtime_path |

Commit Message

Ivan Tetyushkin Oct. 25, 2022, 4:29 p.m. UTC
  ---
 gdb/testsuite/gdb.base/info-shared.exp | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
  

Patch

diff --git a/gdb/testsuite/gdb.base/info-shared.exp b/gdb/testsuite/gdb.base/info-shared.exp
index 290ae5793dc..9b400e07649 100644
--- a/gdb/testsuite/gdb.base/info-shared.exp
+++ b/gdb/testsuite/gdb.base/info-shared.exp
@@ -22,12 +22,14 @@  standard_testfile
 set lib1name $testfile-solib1
 set srcfile_lib1 $srcdir/$subdir/$lib1name.c
 set binfile_lib1 [standard_output_file $lib1name.so]
-set define1 -DSHLIB1_NAME=\"$binfile_lib1\"
+set runtime_binfile_lib1 [get_runtime_file $binfile_lib1]
+set define1 -DSHLIB1_NAME=\"$runtime_binfile_lib1"
 
 set lib2name $testfile-solib2
 set srcfile_lib2 $srcdir/$subdir/$lib2name.c
 set binfile_lib2 [standard_output_file $lib2name.so]
-set define2 -DSHLIB2_NAME=\"$binfile_lib2\"
+set runtime_binfile_lib2 [get_runtime_file $binfile_lib2]
+set define2 -DSHLIB2_NAME=\"$runtime_binfile_lib2"
 
 if { [gdb_compile_shlib $srcfile_lib1 $binfile_lib1 {}] != "" } {
     untested "failed to compile shared library 1"
@@ -45,6 +47,9 @@  if { [prepare_for_testing "failed to prepare" $testfile $srcfile \
     return -1
 }
 
+gdb_load_shlib $binfile_lib1
+gdb_load_shlib $binfile_lib2
+
 # Run "info sharedlibrary" and check for the presence or absence of
 # our libraries.
 proc check_info_shared { test expect1 expect2 } {