diff options
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/default.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/setshow.exp | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 4289819..c4a6237 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-05-13 Muhammad Bilal <mbilal@codesourcery.com> + + * gdb.base/default.exp: Disable history saving. + * gdb.base/setshow.exp: Likewise. + 2013-05-10 Pedro Alves <palves@redhat.com> PR remote/15455 diff --git a/gdb/testsuite/gdb.base/default.exp b/gdb/testsuite/gdb.base/default.exp index 6920090..9230ee8 100644 --- a/gdb/testsuite/gdb.base/default.exp +++ b/gdb/testsuite/gdb.base/default.exp @@ -725,6 +725,8 @@ gdb_test_multiple "show" "show" { } } } +#history saving should stay disabled +gdb_test_no_output "set history save off" "set history save off" #test stepi "si" abbreviation gdb_test "si" "The program is not being run." "stepi \"si\" abbreviation" #test stepi diff --git a/gdb/testsuite/gdb.base/setshow.exp b/gdb/testsuite/gdb.base/setshow.exp index c78d2df..6d250c0 100644 --- a/gdb/testsuite/gdb.base/setshow.exp +++ b/gdb/testsuite/gdb.base/setshow.exp @@ -178,6 +178,8 @@ gdb_test "show history filename" "The filename in which to record the command hi gdb_test_no_output "set history save on" "set history save on" #test show history save on gdb_test "show history save" "Saving of the history record on exit is on..*" "show history save (on)" +#history saving should stay disabled +gdb_test_no_output "set history save off" "set history save off" #test set history size 100 gdb_test_no_output "set history size 100" "set history size 100" #test show history size 100 |