mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 20:43:45 +08:00
Don't print ``(MI_OUT)'' at startup.
This commit is contained in:
parent
17732724f3
commit
d20bf2e81b
@ -1,3 +1,8 @@
|
||||
2001-10-21 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* top.c (print_gdb_version): Do not print ``(MI_OUT)''. MI
|
||||
interface is always enabled.
|
||||
|
||||
2001-10-21 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* Makefile.in: Replace top.h with $(top_h). Replace expression.h
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-10-21 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* lib/mi-support.exp (mi_gdb_start): Don't require MI_OUT when
|
||||
checking MI enabled.
|
||||
|
||||
2001-10-09 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* gdb.base/maint.exp: Treat $EXEEXT as optional in output.
|
||||
|
@ -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)."
|
||||
|
@ -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. */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user