[gdb/testsuite] Set remotedir by default in some boards
authorTom de Vries <tdevries@suse.de>
Fri, 17 Mar 2023 15:06:39 +0000 (16:06 +0100)
committerTom de Vries <tdevries@suse.de>
Fri, 17 Mar 2023 15:06:39 +0000 (16:06 +0100)
When doing a gdb_simple_compile, and downloading the resulting exec $obj
to target the result $target_obj may be a relative file path, which may give
problems when trying to do:
...
remote_exec target $target_obj
...

Fix/workaround this on some target boards by setting remotedir by default, and
add a corresponding test in gdb.testsuite/board-sanity.exp.

This doesn't work for host/target board local-remote-host-native, so xfail this.

Tested on x86_64-linux.

gdb/testsuite/boards/remote-gdbserver-on-localhost.exp
gdb/testsuite/boards/remote-stdio-gdbserver.exp
gdb/testsuite/gdb.testsuite/board-sanity.exp

index a08d2d198011e6feb8bfd3ff15cc75544911ca19..530e744c9b4a10085207ac06ab9b74e874098dc9 100644 (file)
@@ -37,22 +37,35 @@ if { [info exists REMOTE_TARGET_USERNAME] } {
 }
 set_board_info hostname localhost
 
-# Handle separate test account.
-if { [board_info $board username] != $env(USER) } {
-    # We're pretending that some local user account is remote target.
-    # Make things a bit more realistic by restricting file permissions.
-
-    # Make sure remote target can't see files on build.
-    remote_exec build "chmod go-rx $objdir"
-
-    # Make sure build can't see files on remote target.  We can't use
-    # remote_exec target, because we're in the middle of parsing the
-    # target board.
-    remote_exec build \
-       "[board_info $board rsh_prog] \
-                    -l [board_info $board username] \
-                       [board_info $board hostname] \
-       chmod go-rx ."
+save_vars {rsh_cmd res} {
+    set rsh_cmd \
+       [join \
+            [list \
+                 [board_info $board rsh_prog] \
+                 -l [board_info $board username] \
+                 [board_info $board hostname]]]
+
+    # Handle separate test account.
+    if { [board_info $board username] != $env(USER) } {
+       # We're pretending that some local user account is remote target.
+       # Make things a bit more realistic by restricting file permissions.
+
+       # Make sure remote target can't see files on build.
+       remote_exec build "chmod go-rx $objdir"
+
+       # Make sure build can't see files on remote target.  We can't use
+       # remote_exec target, because we're in the middle of parsing the
+       # target board.
+       remote_exec build $rsh_cmd chmod go-rx ."
+    }
+
+    # Set remotedir by default, to force remote_download target to give an
+    # absolute file name.
+    set res [remote_exec build $rsh_cmd pwd]
+    if { [lindex $res 0] != 0 } {
+       error "Couldn't set remotedir using pwd"
+    }
+    set_board_info remotedir [string trim [lindex $res 1]]
 }
 
 proc ${board}_file { dest op args } {
index 53e40d86477f3b641def5d37202d293b5056cea0..c4e29e402fe0327883df14884228139615e5242b 100644 (file)
@@ -45,6 +45,22 @@ set_board_info rcp_prog /usr/bin/scp
 # Some remote machines don't have writable home directories.
 if [info exists REMOTE_TMPDIR] {
     set_board_info remotedir $REMOTE_TMPDIR
+} else {
+    # Set remotedir by default, to force remote_download target to give an
+    # absolute file name.
+    save_vars {rsh_cmd res} {
+       set rsh_cmd \
+           [join \
+                [list \
+                     [board_info $board rsh_prog] \
+                     -l [board_info $board username] \
+                     [board_info $board hostname]]]
+       set res [remote_exec build $rsh_cmd pwd]
+       if { [lindex $res 0] != 0 } {
+           error "Couldn't set remotedir using pwd"
+       }
+       set_board_info remotedir [string trim [lindex $res 1]]
+    }
 }
 
 if [info exists GDBSERVER] {
index b2b3690d1b5115675549e00f8db4cc3f329247b9..d6402262f602ac97501ae21c4e65cb496128b996 100644 (file)
@@ -120,3 +120,35 @@ foreach_with_prefix remote {host target} {
        test_remote $remote $host_is_target
     }
 }
+
+proc_with_prefix gdb_simple_compile_and_run {} {
+    set src {
+       int main() {
+           return 0;
+       }
+    }
+
+    set test "compile"
+    if {![gdb_simple_compile board-sanity $src executable]} {
+       fail $test
+       return
+    }
+    pass $test
+
+    set target_obj [gdb_remote_download target $obj]
+    set result [remote_exec target $target_obj]
+    set status [lindex $result 0]
+    set output [lindex $result 1]
+
+    if { [host_info name] == "local-remote-host-native"
+        && [target_info name] == "local-remote-host-native" } {
+       # Setting remotedir on this board has effect on both host and
+       # target, and it seems to broken for host.  Xfail this for now.
+       setup_xfail *-*-*
+    }
+    gdb_assert { $status == 0 && $output == "" }
+
+    remote_file build delete $obj
+}
+
+gdb_simple_compile_and_run