From: Tom de Vries Date: Tue, 18 Oct 2022 13:32:47 +0000 (+0200) Subject: [gdb/testsuite] Handle header files with local-remote-host.exp X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0df940ee00806ce1e4d443eac27bddc2662d1897;p=binutils-gdb.git [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. --- diff --git a/gdb/testsuite/gdb.base/included.exp b/gdb/testsuite/gdb.base/included.exp index 336eb636ceb..a4e195b3dc1 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 . +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 bb33dc8880e..b58a43f81a3 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 aec2d5a8c0f..c5be941695b 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 d8b9ef7d5df..52a62a252fc 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 . +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 ceef308380e..c6925709676 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}