From: Andrew Cagney Date: Sun, 21 Oct 2001 19:43:41 +0000 (+0000) Subject: Don't print ``(MI_OUT)'' at startup. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d20bf2e81b5b795f6be38afe8ed5cd7218a41201;p=binutils-gdb.git Don't print ``(MI_OUT)'' at startup. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a032518c250..723b6572e4c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-10-21 Andrew Cagney + + * top.c (print_gdb_version): Do not print ``(MI_OUT)''. MI + interface is always enabled. + 2001-10-21 Andrew Cagney * Makefile.in: Replace top.h with $(top_h). Replace expression.h diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 69b13d20f1d..1be8c737cc4 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2001-10-21 Andrew Cagney + + * lib/mi-support.exp (mi_gdb_start): Don't require MI_OUT when + checking MI enabled. + 2001-10-09 Corinna Vinschen * gdb.base/maint.exp: Treat $EXEEXT as optional in output. diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp index 76fad161a38..8727ae51372 100644 --- a/gdb/testsuite/lib/mi-support.exp +++ b/gdb/testsuite/lib/mi-support.exp @@ -123,13 +123,8 @@ proc mi_gdb_start { } { return 1; } gdb_expect { - -re ".*MI_OUT.*$mi_gdb_prompt$" { - verbose "GDB initialized." - } -re ".*$mi_gdb_prompt$" { - untested "Skip mi tests (output not in headless format)." - remote_close host; - return -1; + verbose "GDB initialized." } -re ".*$gdb_prompt $" { untested "Skip mi tests (got non-mi prompt)." diff --git a/gdb/top.c b/gdb/top.c index 7cdc4bdf0b1..3798a3b7ce9 100644 --- a/gdb/top.c +++ b/gdb/top.c @@ -1272,12 +1272,7 @@ print_gdb_version (struct ui_file *stream) program to parse, and is just canonical program name and version number, which starts after last space. */ -#ifdef MI_OUT - /* Print it console style until a format is defined */ - fprintf_filtered (stream, "GNU gdb %s (MI_OUT)\n", version); -#else fprintf_filtered (stream, "GNU gdb %s\n", version); -#endif /* Second line is a copyright notice. */