Disable parts of gdb.base/source-dir.exp on remote host

One set of tests in this file does a lot of complicated directory
manipulations to force a specific DW_AT_comp_dir format and gdb
directory search path.  As it's written, everything assumes host ==
build, and it does not seem to me that there is any obvious way to
rewrite this so it will work in general on remote host.  For instance,
our harness for testing on remote Windows host normally does all
compilation and GDB execution in $cwd using relative pathnames and I'm
not sure all these directory tricks would set up the scenario it's
trying to test even if they were correctly performed on host rather
than build.  So I think it's reasonable just to disable this on remote
host instead.

I also noted that it's using the wrong search path syntax for Windows
host in the "set directories" command and conditionalized that while I
was looking at it.  That's a necessary fix to make this work in a
situation where host == build and it's Windows, but I'm not actually
set up to test that it's sufficient, too.

2020-06-22  Sandra Loosemore  <sandra@codesourcery.com>

	gdb/testsuite/
	* gdb.base/source-dir.exp (test_truncated_comp_dir): Skip on
	remote host.  Fix search path syntax on Windows host.
This commit is contained in:
Sandra Loosemore 2020-06-22 10:10:02 -07:00
parent e4b7104b1e
commit e822f2cda9
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2020-06-22 Sandra Loosemore <sandra@codesourcery.com>
* gdb.base/source-dir.exp (test_truncated_comp_dir): Skip on
remote host. Fix search path syntax on Windows host.
2020-06-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
* gdb.base/attach.exp: Test priority of 'exec-file' changed

View File

@ -81,6 +81,12 @@ proc test_truncated_comp_dir {} {
# find the source file no matter what we added to the directory
# search path, this should now be fixed.
# All of these pathname and directory manipulations assume
# host == build, so do not attempt this set of tests on remote host.
if [is_remote host] {
return
}
set original_dir [pwd]
set working_dir [standard_output_file ""]
cd ${working_dir}
@ -108,7 +114,11 @@ proc test_truncated_comp_dir {} {
clean_restart ${binfile}
gdb_test_no_output "set directories \$cdir:\$cwd"
if { [ishost *-*-mingw*] } {
gdb_test_no_output "set directories \$cdir;\$cwd"
} else {
gdb_test_no_output "set directories \$cdir:\$cwd"
}
gdb_test "show directories" \
"\r\nSource directories searched: \\\$cdir\[:;\]\\\$cwd"