diff options
author | Pedro Alves <palves@redhat.com> | 2016-06-30 11:55:21 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-06-30 11:55:21 +0100 |
commit | 994e9c834d916af85e0fe0e8c3e18259aa4be389 (patch) | |
tree | e00478e7dc72c54ee8401c388bfbda4c07322433 | |
parent | 9004b6bd58b6203cb3d1de1ca8d6ce6fc140ae61 (diff) | |
download | binutils-gdb-994e9c834d916af85e0fe0e8c3e18259aa4be389.tar.gz |
Make testing gdb with FORCE_SEPARATE_MI_TTY=1 actually work
Runing the whole gdb testsuite with MI on a separate tty, with:
make check RUNTESTFLAGS="FORCE_SEPARATE_MI_TTY=1"
Doesn't actually work because commit 51f77c3704a6 ("Add testing
infrastruture bits for running with MI on a separate UI") included a
last-minute rename typo, now fixed with this commit.
gdb/testsuite/ChangeLog:
2016-06-30 Pedro Alves <palves@redhat.com>
* lib/mi-support.exp (default_mi_gdb_start): Declare global
FORCE_SEPARATE_MI_TTY, not SEPARATE_MI_TTY.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/lib/mi-support.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 5dd926e5a94..ab0d9e67d6e 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-06-30 Pedro Alves <palves@redhat.com> + + * lib/mi-support.exp (default_mi_gdb_start): Declare global + FORCE_SEPARATE_MI_TTY, not SEPARATE_MI_TTY. + 2016-06-29 Yao Qi <yao.qi@linaro.org> * gdb.base/return.c: Add copyright header. diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp index 7b5c90b5314..28af70a8f40 100644 --- a/gdb/testsuite/lib/mi-support.exp +++ b/gdb/testsuite/lib/mi-support.exp @@ -193,7 +193,7 @@ proc default_mi_gdb_start { args } { global timeout global gdb_spawn_id gdb_main_spawn_id inferior_spawn_id mi_spawn_id global MIFLAGS - global SEPARATE_MI_TTY + global FORCE_SEPARATE_MI_TTY if {[info exists FORCE_SEPARATE_MI_TTY]} { set separate_mi_pty $FORCE_SEPARATE_MI_TTY |