diff options
author | Tom de Vries <tdevries@suse.de> | 2022-10-18 15:32:47 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2022-10-18 15:32:47 +0200 |
commit | 0df940ee00806ce1e4d443eac27bddc2662d1897 (patch) | |
tree | 4e0db475b2ef5c794baf16394f807d686a9ab6ca | |
parent | 21b61fe24223da81fcc35d2dfd3893f01285e2a5 (diff) | |
download | binutils-0df940ee00806ce1e4d443eac27bddc2662d1897.zip binutils-0df940ee00806ce1e4d443eac27bddc2662d1897.tar.gz binutils-0df940ee00806ce1e4d443eac27bddc2662d1897.tar.bz2 |
[gdb/testsuite] Handle header files with local-remote-host.exp
With test-case gdb.base/included.exp and host board local-remote-host.exp with
tentative fix for PR29697 I run into:
...
included.c:18:10: fatal error: included.h: No such file or directory
#include "included.h"
^~~~~~~~~~~~
compilation terminated.
...
Fix this by adding the missing gdb_remote_download calls.
Likewise in a few other test-cases.
Tested on x86_64-linux.
-rw-r--r-- | gdb/testsuite/gdb.base/included.exp | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/large-frame.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/line-symtabs.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/sep.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/shlib-call.exp | 4 |
5 files changed, 21 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.base/included.exp b/gdb/testsuite/gdb.base/included.exp index 336eb63..a4e195b 100644 --- a/gdb/testsuite/gdb.base/included.exp +++ b/gdb/testsuite/gdb.base/included.exp @@ -13,6 +13,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +if { [is_remote host] } { + gdb_remote_download host $srcdir/$subdir/included.h +} + standard_testfile if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug]} { return -1 @@ -33,4 +37,4 @@ gdb_test "ptype integer" "type = int" # We should report that integer comes from the header file. if { $non_dwarf } { setup_xfail *-*-* } -gdb_test "info variables integer" "\r\nFile \[^\r\n\]*/${subdir}/${testfile}.h:\r\n.*\tint integer;" +gdb_test "info variables integer" "\r\nFile \[^\r\n\]*${testfile}.h:\r\n.*\tint integer;" diff --git a/gdb/testsuite/gdb.base/large-frame.exp b/gdb/testsuite/gdb.base/large-frame.exp index bb33dc8..b58a43f 100644 --- a/gdb/testsuite/gdb.base/large-frame.exp +++ b/gdb/testsuite/gdb.base/large-frame.exp @@ -15,6 +15,10 @@ # # This file is part of the gdb testsuite. +if { [is_remote host] } { + gdb_remote_download host $srcdir/$subdir/large-frame.h +} + # This test was added to test GDB's ability to backtrace over a large # stack frame for which there is no debug information. This should # test the non-DWARF stack unwinder. diff --git a/gdb/testsuite/gdb.base/line-symtabs.exp b/gdb/testsuite/gdb.base/line-symtabs.exp index aec2d5a..c5be941 100644 --- a/gdb/testsuite/gdb.base/line-symtabs.exp +++ b/gdb/testsuite/gdb.base/line-symtabs.exp @@ -16,6 +16,10 @@ standard_testfile .c line-symtabs.h +if { [is_remote host] } { + gdb_remote_download host $srcdir/$subdir/$srcfile2 +} + if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } { return -1 } diff --git a/gdb/testsuite/gdb.base/sep.exp b/gdb/testsuite/gdb.base/sep.exp index d8b9ef7..52a62a2 100644 --- a/gdb/testsuite/gdb.base/sep.exp +++ b/gdb/testsuite/gdb.base/sep.exp @@ -13,6 +13,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +if { [is_remote host] } { + gdb_remote_download host $srcdir/$subdir/sep-proc.c +} + standard_testfile .c if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } { diff --git a/gdb/testsuite/gdb.base/shlib-call.exp b/gdb/testsuite/gdb.base/shlib-call.exp index ceef308..c692570 100644 --- a/gdb/testsuite/gdb.base/shlib-call.exp +++ b/gdb/testsuite/gdb.base/shlib-call.exp @@ -33,6 +33,10 @@ if {[skip_shlib_tests]} { return 0 } +if { [is_remote host] } { + gdb_remote_download host $srcdir/$subdir/ss.h +} + standard_testfile shmain.c shr1.c shr2.c set srcfile ${srcdir}/${subdir}/${srcfile} set lib1src ${srcdir}/${subdir}/${srcfile2} |