From a0719e0a0552679ac51aafaf2f6b30cfecf20ed3 Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Tue, 28 Mar 2023 22:15:18 +0200 Subject: [PATCH] [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. --- gdb/testsuite/gdb.btrace/multi-inferior.exp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/gdb.btrace/multi-inferior.exp b/gdb/testsuite/gdb.btrace/multi-inferior.exp index 79e5a1c39bf..2f4388e9501 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.*" -- 2.30.2