diff options
author | Pedro Alves <palves@redhat.com> | 2015-01-12 17:10:06 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-01-12 17:10:06 +0000 |
commit | 3d230f71746e0b33376f8b9bca914cc5d980997a (patch) | |
tree | d5018c211db115c1ba5d387827016a2fb29d115f /gdb/testsuite/gdb.python/py-prompt.exp | |
parent | 72c61a0d1ef445f99305859b66450da60ec6e0cb (diff) | |
download | binutils-gdb-3d230f71746e0b33376f8b9bca914cc5d980997a.tar.gz |
gdb.python/py-prompt.exp: restore GDBFLAGS
The previous change to py-prompt.exp made it return without restoring
GDBFLAGS, resulting in breaking the following tests:
$ make check RUNTESTFLAGS="--target_board=native-gdbserver --directory=gdb.python"
...
Running src/gdb/testsuite/gdb.python/py-prompt.exp ...
Running src/gdb/testsuite/gdb.python/py-section-script.exp ...
ERROR: (timeout) GDB never initialized after 10 seconds.
ERROR: no fileid for gdbuild
ERROR: Couldn't send python print ('test') to GDB.
ERROR: no fileid for gdbuild
ERROR: Couldn't send python print (sys.version_info[0]) to GDB.
ERROR: no fileid for gdbuild
ERROR: Couldn't send python print (sys.version_info[1]) to GDB.
ERROR: no fileid for gdbuild
ERROR: no fileid for gdbuild
...
gdb/testsuite/
2015-01-12 Pedro Alves <palves@redhat.com>
* gdb.python/py-prompt.exp: When the board can't spawn for attach,
restore GDBFLAGS before returning.
Diffstat (limited to 'gdb/testsuite/gdb.python/py-prompt.exp')
-rw-r--r-- | gdb/testsuite/gdb.python/py-prompt.exp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-prompt.exp b/gdb/testsuite/gdb.python/py-prompt.exp index 55f0f5966eb..0f7a3a4bb11 100644 --- a/gdb/testsuite/gdb.python/py-prompt.exp +++ b/gdb/testsuite/gdb.python/py-prompt.exp @@ -76,6 +76,7 @@ gdb_test "python print (\"'\" + str(p\[0\]) + \"'\")" "'$gdb_prompt_fail '" \ gdb_exit if {![can_spawn_for_attach]} { + set GDBFLAGS $saved_gdbflags return 0 } |