diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-03-25 20:44:01 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-03-25 20:44:01 +0000 |
commit | 8f4f3fc7b1969402ab8dfa8fea46f5e73149c188 (patch) | |
tree | d108994df79c221a9c26d09b03e3349aa9a36ce6 | |
parent | 1604ccb3c832a583bb388d3bae2b926cbef8279e (diff) | |
download | gdb-8f4f3fc7b1969402ab8dfa8fea46f5e73149c188.zip gdb-8f4f3fc7b1969402ab8dfa8fea46f5e73149c188.tar.gz gdb-8f4f3fc7b1969402ab8dfa8fea46f5e73149c188.tar.bz2 |
* lib/mi-support.exp (mi_gdb_load): Use /tmp for gdbserver
downloads.
* config/gdbserver.exp (gdb_load): Likewise.
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/config/gdbserver.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/lib/mi-support.exp | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b50169e..55318f8 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2005-03-25 Daniel Jacobowitz <dan@codesourcery.com> + + * lib/mi-support.exp (mi_gdb_load): Use /tmp for gdbserver + downloads. + * config/gdbserver.exp (gdb_load): Likewise. + 2005-03-14 Paul Brook <paul@codesourcery.com> * lib/mi-support.exp: Use mi_gdb_target_cmd to connect to remote diff --git a/gdb/testsuite/config/gdbserver.exp b/gdb/testsuite/config/gdbserver.exp index 6dc6b23..61db50e 100644 --- a/gdb/testsuite/config/gdbserver.exp +++ b/gdb/testsuite/config/gdbserver.exp @@ -2,7 +2,7 @@ # ie. a debug agent running as a native process on the same or # a different host. -# Copyright 2000, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -201,7 +201,7 @@ proc gdb_load { arg } { if { ! [info exists server_exec] } { if [is_remote target] { - set server_exec [remote_download target $host_exec] + set server_exec [remote_download target $host_exec /tmp/[file tail $host_exec].[pid]] } else { set server_exec $host_exec } diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp index 6d1d867..a8d2942 100644 --- a/gdb/testsuite/lib/mi-support.exp +++ b/gdb/testsuite/lib/mi-support.exp @@ -1,4 +1,4 @@ -# Copyright 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright 1999, 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -439,7 +439,7 @@ proc mi_gdb_load { arg } { if { ! [info exists last_mi_remote_file] } { if [is_remote target] { - set last_mi_remote_file [remote_download target $arg] + set last_mi_remote_file [remote_download target $arg /tmp/[file tail $arg].[pid]] } else { set last_mi_remote_file $last_mi_gdb_file } |