2012-01-04 08:17:56 +00:00
|
|
|
# Copyright 1999-2003, 2005, 2007-2012 Free Software Foundation, Inc.
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2000-02-23 00:25:43 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2000-02-23 00:25:43 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2000-02-23 00:25:43 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Test essential Machine interface (MI) operations
|
|
|
|
#
|
|
|
|
# Verify that, using the MI, we can run a simple program and perform basic
|
|
|
|
# debugging activities like: insert breakpoints, run the program,
|
|
|
|
# step, next, continue until it ends and, last but not least, quit.
|
|
|
|
#
|
|
|
|
# The goal is not to test gdb functionality, which is done by other tests,
|
|
|
|
# but to verify the correct output response to MI operations.
|
|
|
|
#
|
|
|
|
|
|
|
|
# This test only works when talking to a target that routes its output
|
|
|
|
# through GDB. Check that we're either talking to a simulator or a
|
|
|
|
# remote target.
|
|
|
|
|
|
|
|
load_lib mi-support.exp
|
2001-06-18 17:57:43 +00:00
|
|
|
set MIFLAGS "-i=mi"
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
gdb_exit
|
2005-08-04 01:52:31 +00:00
|
|
|
if [mi_gdb_start separate-inferior-tty] {
|
2000-02-23 00:25:43 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2012-07-10 15:32:52 +00:00
|
|
|
standard_testfile
|
|
|
|
|
gdb/testsuite:
* gdb.mi/gdb2549.exp: Remove -DFAKEARGV from compilation flags.
* gdb.mi/mi-async.exp, gdb.mi/mi-basics.exp: Likewise.
* gdb.mi/mi-break.exp, gdb.mi/mi-cli.exp: Likewise.
* gdb.mi/mi-console.exp, gdb.mi/mi-disassemble.exp: Likewise.
* gdb.mi/mi-eval.exp, gdb.mi/mi-file.exp: Likewise.
* gdb.mi/mi-read-memory.exp, gdb.mi/mi-regs.exp: Likewise.
* gdb.mi/mi-return.exp, gdb.mi/mi-reverse.exp: Likewise.
* gdb.mi/mi-simplerun.exp, gdb.mi/mi-stack.exp: Likewise.
* gdb.mi/mi-stepi.exp, gdb.mi/mi-syn-frame.exp: Likewise.
* gdb.mi/mi-until.exp, gdb.mi/mi-var-block.exp: Likewise.
* gdb.mi/mi-var-child.exp, gdb.mi/mi-var-cmd.exp: Likewise.
* gdb.mi/mi-var-display.exp: Likewise.
* gdb.mi/mi-var-invalidate.exp: Likewise.
* gdb.mi/mi-watch.exp, gdb.mi/mi2-basics.exp: Likewise.
* gdb.mi/mi2-break.exp, gdb.mi/mi2-cli.exp: Likewise.
* gdb.mi/mi2-console.exp: Likewise.
* gdb.mi/mi2-disassemble.exp: Likewise.
* gdb.mi/mi2-eval.exp, gdb.mi/mi2-file.exp: Likewise.
* gdb.mi/mi2-read-memory.exp: Likewise.
* gdb.mi/mi2-regs.exp, gdb.mi/mi2-return.exp: Likewise.
* gdb.mi/mi2-simplerun.exp: Likewise.
* gdb.mi/mi2-stack.exp, gdb.mi/mi2-stepi.exp: Likewise.
* gdb.mi/mi2-syn-frame.exp: Likewise.
* gdb.mi/mi2-until.exp, gdb.mi/mi2-var-block.exp: Likewise.
* gdb.mi/mi2-var-child.exp, gdb.mi/mi2-var-cmd.exp: Likewise.
* gdb.mi/mi2-var-display.exp, gdb.mi/mi2-watch.exp: Likewise.
2012-07-09 18:28:17 +00:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested mi-console.exp
|
|
|
|
return -1
|
2000-02-23 00:25:43 +00:00
|
|
|
}
|
|
|
|
|
2002-11-05 15:43:18 +00:00
|
|
|
mi_run_to_main
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
# Next over the hello() call which will produce lots of output
|
2008-04-05 17:12:46 +00:00
|
|
|
mi_gdb_test "220-exec-next" \
|
2008-06-10 10:23:54 +00:00
|
|
|
"220\\^running(\r\n\\*running,thread-id=\"all\")?" \
|
2005-08-04 01:52:31 +00:00
|
|
|
"Testing console output" \
|
|
|
|
"Hello \\\\\"!\[\r\n\]+"
|
2000-02-23 00:25:43 +00:00
|
|
|
|
2008-04-05 17:12:46 +00:00
|
|
|
mi_expect_stop "end-stepping-range" "main" "" ".*mi-console.c" "14" "" \
|
|
|
|
"finished step over hello"
|
2005-09-11 20:24:54 +00:00
|
|
|
|
2000-02-23 00:25:43 +00:00
|
|
|
mi_gdb_exit
|
|
|
|
return 0
|