diff options
author | Tom de Vries <tdevries@suse.de> | 2023-03-28 22:15:18 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-03-28 22:15:18 +0200 |
commit | a0719e0a0552679ac51aafaf2f6b30cfecf20ed3 (patch) | |
tree | cd9348d63204e2bc17c61de7630a35522947be75 | |
parent | c5799b6aa2048dc9fd7992b93fc9ea1deb456ac2 (diff) | |
download | gdb-a0719e0a0552679ac51aafaf2f6b30cfecf20ed3.zip gdb-a0719e0a0552679ac51aafaf2f6b30cfecf20ed3.tar.gz gdb-a0719e0a0552679ac51aafaf2f6b30cfecf20ed3.tar.bz2 |
[gdb/testsuite] Fix gdb.btrace/multi-inferior.exp for remote host
Fix test-case gdb.btrace/multi-inferior.exp for remote host using
gdb_remote_download.
Tested on x86_64-linux.
-rw-r--r-- | gdb/testsuite/gdb.btrace/multi-inferior.exp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.btrace/multi-inferior.exp b/gdb/testsuite/gdb.btrace/multi-inferior.exp index 79e5a1c..2f4388e 100644 --- a/gdb/testsuite/gdb.btrace/multi-inferior.exp +++ b/gdb/testsuite/gdb.btrace/multi-inferior.exp @@ -31,6 +31,8 @@ if [prepare_for_testing "failed to prepare" $testfile {} {debug}] { return -1 } +set host_binfile [gdb_remote_download host $binfile] + with_test_prefix "inferior 1" { if ![runto_main] { return -1 @@ -38,7 +40,7 @@ with_test_prefix "inferior 1" { } with_test_prefix "inferior 2" { - gdb_test "add-inferior -exec ${binfile}" "Added inferior 2.*" \ + gdb_test "add-inferior -exec $host_binfile" "Added inferior 2.*" \ "add second inferior" gdb_test "inferior 2" "Switching to inferior 2.*" @@ -57,7 +59,7 @@ with_test_prefix "inferior 1" { } with_test_prefix "inferior 3" { - gdb_test "add-inferior -exec ${binfile}" "Added inferior 3.*" \ + gdb_test "add-inferior -exec ${host_binfile}" "Added inferior 3.*" \ "add third inferior" gdb_test "inferior 3" "Switching to inferior 3.*" |