diff options
author | Fernando Nasser <fnasser@redhat.com> | 2000-12-20 21:24:28 +0000 |
---|---|---|
committer | Fernando Nasser <fnasser@redhat.com> | 2000-12-20 21:24:28 +0000 |
commit | b4df4f6849c12bd0cca8534e7c17242d0209f130 (patch) | |
tree | 628f2b5be391176254ce4a91a577bda14c63f0b2 /gdb/testsuite | |
parent | 5bff4f5642edc6e44c15f3e189d683d5dde1a2c8 (diff) | |
download | gdb-b4df4f6849c12bd0cca8534e7c17242d0209f130.zip gdb-b4df4f6849c12bd0cca8534e7c17242d0209f130.tar.gz gdb-b4df4f6849c12bd0cca8534e7c17242d0209f130.tar.bz2 |
2000-12-20 Fernando Nasser <fnasser@redhat.com>
* Makefile.in (UIOUT_CFLAGS): New macro. CFLAGS needed for uiout code
to be compiled. Defines UI_OUT.
(SUBDIR_MI_CFLAGS): Defines MI_OUT, not UI_OUT.
(INTERNAL_WARN_CFLAGS): Also include UIOUT_CFLAGS.
* configure.in (UIOUT_CFLAGS): New configuration variable.
(--with-uiout): New configuration option. Causes uiout code to
be compiled, instead of the old *printf one.
* configure: Regenerate.
* top.c (print_gdb_version): Test for and print MI_OUT, not UI_OUT.
* testsuite/lib/mi-support.exp (mi_gdb_start): Test for MI_OUT,
not UI_OUT.
Diffstat (limited to 'gdb/testsuite')
-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 06cd2bd..c0d35b0 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2000-12-20 Fernando Nasser <fnasser@redhat.com> + + * testsuite/lib/mi-support.exp (mi_gdb_start): Test for MI_OUT, + not UI_OUT. + 2000-12-18 Michael Snyder <msnyder@mvstp600e.cygnus.com> * gdb.base/setvar.exp: Use double '\\' to quote curly braces diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp index 1cad1b1..6b3e3e7 100644 --- a/gdb/testsuite/lib/mi-support.exp +++ b/gdb/testsuite/lib/mi-support.exp @@ -117,7 +117,7 @@ proc mi_gdb_start { } { return 1; } gdb_expect { - -re ".*UI_OUT.*$mi_gdb_prompt$" { + -re ".*MI_OUT.*$mi_gdb_prompt$" { verbose "GDB initialized." } -re ".*$mi_gdb_prompt$" { |