aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/unix.exp15
1 files changed, 14 insertions, 1 deletions
diff --git a/config/unix.exp b/config/unix.exp
index 6a0ff72..190c122 100644
--- a/config/unix.exp
+++ b/config/unix.exp
@@ -79,6 +79,11 @@ proc unix_load { dest prog args } {
verbose -log "Setting LD_LIBRARY_PATH to $ld_library_path:$orig_ld_library_path" 2
verbose -log "Execution timeout is: $test_timeout" 2
+ # Prepend shell name (e.g., qemu emulator) to the command.
+ if {[board_info $dest exists exec_shell]} {
+ set command "[board_info $dest exec_shell] $command"
+ }
+
set id [remote_spawn $dest "$command" "readonly"]
if { $id < 0 } {
set output "remote_spawn failed"
@@ -120,7 +125,15 @@ proc unix_load { dest prog args } {
return [list "unresolved" ""]
}
}
- set status [remote_exec $dest "$remotefile" $parg $inp]
+
+ # Prepend shell name (e.g., qemu emulator) to the command.
+ if {[board_info $dest exists exec_shell]} {
+ set remotecmd "[board_info $dest exec_shell] $remotefile"
+ } else {
+ set remotecmd "$remotefile"
+ }
+
+ set status [remote_exec $dest "$remotecmd" $parg $inp]
remote_file $dest delete $remotefile.o $remotefile
if { [lindex $status 0] < 0 } {
verbose -log "Couldn't execute $prog, [lindex $status 1]" 3