diff options
-rw-r--r-- | gdb/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/checkpoint-ns.exp | 9 |
2 files changed, 11 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 3324baa..916da1f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2015-08-12 Sergio Durigan Junior <sergiodj@redhat.com> + Pedro Alves <palves@redhat.com> + Keith Seitz <keiths@redhat.com> + + * gdb.base/checkpoint-ns.exp: Use save_vars to save and restore + GDBFLAGS. + 2015-08-12 Patrick Palka <patrick@parcs.ath.cx> * gdb.base/gdbhistsize-history.exp diff --git a/gdb/testsuite/gdb.base/checkpoint-ns.exp b/gdb/testsuite/gdb.base/checkpoint-ns.exp index d3698ba..d470bc4 100644 --- a/gdb/testsuite/gdb.base/checkpoint-ns.exp +++ b/gdb/testsuite/gdb.base/checkpoint-ns.exp @@ -18,9 +18,8 @@ # We drive non-stop mode from a separate file because the whole test # takes a while to run. This way, we can test both modes in parallel. -set saved_gdbflags $GDBFLAGS -append GDBFLAGS " -ex \"set non-stop on\"" +save_vars { GDBFLAGS } { + append GDBFLAGS " -ex \"set non-stop on\"" -source $srcdir/$subdir/checkpoint.exp - -set GDBFLAGS $saved_gdbflags + source $srcdir/$subdir/checkpoint.exp +} |