[gdb/testsuite] Fix gdb.xml/tdesc-regs.exp for remote host

Fix test-case gdb.xml/tdesc-regs.exp for remote host by using appropriate
filenames.

Tested on x86_64-linux.
This commit is contained in:
Tom de Vries
2023-03-21 11:25:12 +01:00
parent 33ddd9fc4f
commit 96cabfaa43

View File

@@ -142,12 +142,10 @@ proc load_description { file errmsg xml_file } {
close $ifd
close $ofd
if {[is_remote host]} {
set regs_file [remote_download host "$regs_file" $xml_file]
}
set host_regs_file [gdb_remote_download host "$regs_file"]
# Anchor the test output, so that error messages are detected.
set cmd "set tdesc filename [file tail $regs_file]"
set cmd "set tdesc filename $host_regs_file"
set msg "set tdesc filename $xml_file - from $file"
set cmd_regex [string_to_regexp $cmd]
gdb_test_multiple $cmd $msg {