aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2014-05-13 09:37:54 +0800
committerYao Qi <yao@codesourcery.com>2014-05-14 15:55:40 +0800
commitf23fcd46a7ca34bf466de9164780a78d38729ff7 (patch)
treef032e05fe498ca182d038b31ffeef11d47969ece
parent75ddda778c7fcdffea72615bc5b89d17bd107927 (diff)
downloadfsf-binutils-gdb-f23fcd46a7ca34bf466de9164780a78d38729ff7.zip
fsf-binutils-gdb-f23fcd46a7ca34bf466de9164780a78d38729ff7.tar.gz
fsf-binutils-gdb-f23fcd46a7ca34bf466de9164780a78d38729ff7.tar.bz2
Overwrite ${board}_file in local-remote-host
After I run test like this, $ make check RUNTESTFLAGS='--host_board=local-remote-host dw2-basic.exp' gdb.dwarf2/file1.txt in source tree was removed. In some gdb.dwarf2/*.exp, file1.txt is copied to host and then removed at the end. However, in local-remote-host-notty.exp, ${board}_download doesn't copy the file but return the absolute path of the src file. 'remote_file host delete' at the end will remove the file in source tree. This patch is to overwrite ${board}_file, and specially make "delete" option do nothing. This approach is used in gdbserver-base.exp and remote-stdio-gdbserver.exp too. gdb/testsuite: 2014-05-14 Yao Qi <yao@codesourcery.com> * boards/local-remote-host-notty.exp (${board}_file): New proc.
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/boards/local-remote-host-notty.exp7
2 files changed, 12 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index ce0b72f..e3343ae 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2014-05-14 Yao Qi <yao@codesourcery.com>
+
+ * boards/local-remote-host-notty.exp (${board}_file): New
+ proc.
+
2014-05-07 Kyle McMartin <kyle@redhat.com>
Pushed by Joel Brobecker <brobecker@adacore.com>.
diff --git a/gdb/testsuite/boards/local-remote-host-notty.exp b/gdb/testsuite/boards/local-remote-host-notty.exp
index 6ff8f18..dd3ee5a 100644
--- a/gdb/testsuite/boards/local-remote-host-notty.exp
+++ b/gdb/testsuite/boards/local-remote-host-notty.exp
@@ -33,6 +33,13 @@ set_board_info rsh_prog /usr/bin/ssh
set_board_info rcp_prog /usr/bin/scp
set_board_info file_transfer "rsh"
+proc ${board}_file { dest op args } {
+ if { $op == "delete" } {
+ return 0
+ }
+ return [eval [list standard_file $dest $op] $args]
+}
+
proc ${board}_download { board src dest } {
# If file name is a relative, convert it to absolute, otherwise file can't