* History saving should stay disabled for test cases *
authorMuhammad Bilal <mbilal@sourceware.org>
Mon, 13 May 2013 08:49:23 +0000 (08:49 +0000)
committerMuhammad Bilal <mbilal@sourceware.org>
Mon, 13 May 2013 08:49:23 +0000 (08:49 +0000)
I saw some test cases in gdb.base/default.exp and gdb.base/setshow.exp
are enabling the history saving.
Hence .gdb_history file is modified with history information even
though, by default, we have History saving disabled.
So we should modify GDB test cases so that history saving should stay
off for all test cases.

ChangeLog:

2013-05-13  Muhammad Bilal  <mbilal@codesourcery.com>

       * gdb.base/default.exp: Disable history saving.
       * gdb.base/setshow.exp: Likewise.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/default.exp
gdb/testsuite/gdb.base/setshow.exp

index 4289819d36265960b8a3e60271f1de7c1096d9cf..c4a62377100543a35c1a4dae83fce3d795611b0f 100644 (file)
@@ -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
index 6920090a16d9a497cd9bdfdad0c8adde791c0974..9230ee8c59e28eac33b2ab90c2a58bcb891f1880 100644 (file)
@@ -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
index c78d2df1d0191e142fadf0e1b2cbb3b3fde244c0..6d250c04d09ca243138776ab68fb103e5770b372 100644 (file)
@@ -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