aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2007-07-19 00:41:27 +0000
committerKevin Buettner <kevinb@redhat.com>2007-07-19 00:41:27 +0000
commit7b5ebade65c04a465dad4ee142ceab85a04124b4 (patch)
tree90b116ac14bd00ac38541cfdd29b5c7a927451ac /gdb/testsuite
parentb93bc0774472d3a89158e0b6d0faf3609e43d049 (diff)
downloadbinutils-7b5ebade65c04a465dad4ee142ceab85a04124b4.zip
binutils-7b5ebade65c04a465dad4ee142ceab85a04124b4.tar.gz
binutils-7b5ebade65c04a465dad4ee142ceab85a04124b4.tar.bz2
* config/sid.exp (gdb_load): Add test for empty argument. Adjust
return value to be compatible with gdb_run_cmd in lib/gdb.exp. Remove call to gdb_unload.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/config/sid.exp8
2 files changed, 11 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 8ec0434..7cede72 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2007-07-18 Kevin Buettner <kevinb@redhat.com>
+
+ * config/sid.exp (gdb_load): Add test for empty argument. Adjust
+ return value to be compatible with gdb_run_cmd in lib/gdb.exp.
+ Remove call to gdb_unload.
+
2007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
Daniel Jacobowitz <dan@codesourcery.com>
diff --git a/gdb/testsuite/config/sid.exp b/gdb/testsuite/config/sid.exp
index 9990442..7114467 100644
--- a/gdb/testsuite/config/sid.exp
+++ b/gdb/testsuite/config/sid.exp
@@ -175,8 +175,10 @@ proc gdb_load { arg } {
global gdb_prompt
global retval
- gdb_unload
- if [gdb_file_cmd $arg] then { return -1 }
+ if { $arg != "" } {
+ if [gdb_file_cmd $arg] then { return -1 }
+ }
+
gdb_target_sid
send_gdb "load\n"
@@ -195,7 +197,7 @@ proc gdb_load { arg } {
if $verbose>1 then {
send_user "Loaded $arg into $GDB\n"
}
- set retval 1;
+ set retval 0;
}
-re "$gdb_prompt $" {
if $verbose>1 then {