36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
2004-02-23 Elena Zannoni <ezannoni@redhat.com>
|
|
|
|
* gdb.gdb/selftest.exp: Make sure that the debug directory is
|
|
set up properly.
|
|
* gdb.gdb/complaints.exp: Ditto.
|
|
* gdb.gdb/xfullpath.exp: Ditto.
|
|
* gdb.gdb/observer.exp: Ditto.
|
|
|
|
Index: gdb-7.6.50.20130731-cvs/gdb/testsuite/lib/selftest-support.exp
|
|
===================================================================
|
|
--- gdb-7.6.50.20130731-cvs.orig/gdb/testsuite/lib/selftest-support.exp 2013-08-02 16:11:29.195971922 +0200
|
|
+++ gdb-7.6.50.20130731-cvs/gdb/testsuite/lib/selftest-support.exp 2013-08-02 16:12:20.404040378 +0200
|
|
@@ -130,18 +130,18 @@ proc do_self_tests {function body} {
|
|
set GDB_FULLPATH [find_gdb $GDB]
|
|
|
|
# Remove any old copy lying around.
|
|
- remote_file host delete x$tool
|
|
+ #remote_file host delete x$tool
|
|
|
|
gdb_start
|
|
- set file [remote_download host $GDB_FULLPATH x$tool]
|
|
+ #set file [remote_download host $GDB_FULLPATH x$tool]
|
|
|
|
- set result [selftest_setup $file $function]
|
|
+ set result [selftest_setup $GDB_FULLPATH $function]
|
|
if {$result == 0} then {
|
|
set result [uplevel $body]
|
|
}
|
|
|
|
gdb_exit
|
|
- catch "remote_file host delete $file"
|
|
+ #catch "remote_file host delete $file"
|
|
|
|
if {$result < 0} then {
|
|
warning "Couldn't test self"
|