2014-01-01 03:54:24 +00:00
|
|
|
# Copyright 1999-2014 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
|
|
|
|
2013-02-12 16:36:07 +00:00
|
|
|
# Test inferior console output, with MI.
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2013-11-15 21:41:07 +00:00
|
|
|
#
|
|
|
|
# Given STRING, return the semihosted version of that string.
|
|
|
|
#
|
|
|
|
proc semihosted_string { string } {
|
|
|
|
set semihosted_list {}
|
|
|
|
set leading_markers "@\""
|
|
|
|
set trailing_markers "\"\r\n"
|
|
|
|
|
|
|
|
if {$string != "" } {
|
|
|
|
set split_string [split $string ""]
|
|
|
|
|
|
|
|
foreach char $split_string {
|
|
|
|
# Escape special characters.
|
|
|
|
if {$char == "\\"} {
|
|
|
|
set char "\\\\\\\\"
|
|
|
|
} elseif {$char == "\r"} {
|
|
|
|
set char "\\\\r"
|
|
|
|
} elseif {$char == "\n"} {
|
|
|
|
set char "\\\\n"
|
|
|
|
} elseif {$char == "\""} {
|
|
|
|
set char "\\\\\""
|
|
|
|
}
|
|
|
|
lappend semihosted_list $leading_markers $char $trailing_markers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [join $semihosted_list ""]
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2013-11-15 21:41:07 +00:00
|
|
|
# The output we get from the target depends on how it is hosted. If
|
|
|
|
# we are semihosted (e.g., the sim or a remote target that supports
|
|
|
|
# the File I/O remote protocol extension), we see the target I/O
|
|
|
|
# encapsulated in MI target output stream records. If debugging with
|
|
|
|
# a native target, the inferior's I/O streams are connected directly
|
|
|
|
# to a PTY we create for the inferior (notice separate-inferior-tty
|
|
|
|
# above), and we just see the program's output unadorned. If
|
|
|
|
# debugging with a remote target that doesn't support semihosting,
|
|
|
|
# we'll see nothing.
|
|
|
|
|
|
|
|
# The program's real output string.
|
|
|
|
set program_output "Hello \\\"!\r\n"
|
|
|
|
|
|
|
|
# Prepare the pattern for the PTY output of a native target.
|
|
|
|
set native_output [string map {"\r\n" "\[\r\n\]+"} $program_output]
|
|
|
|
set native_output [string map {"\\" "\\\\"} $native_output]
|
|
|
|
|
|
|
|
# Prepare the pattern for the semihosted output.
|
|
|
|
set semihosted_output [semihosted_string $program_output]
|
|
|
|
|
|
|
|
# Combine both outputs in a single pattern.
|
|
|
|
set output "($semihosted_output|$native_output)"
|
|
|
|
|
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" \
|
2013-11-15 21:41:07 +00:00
|
|
|
$output
|
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
|