2014-01-01 03:54:24 +00:00
|
|
|
# Copyright 1997-2014 Free Software Foundation, Inc.
|
1999-04-16 01:35:26 +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
|
1999-04-16 01:35:26 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +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
|
|
|
#
|
1999-04-16 01:35:26 +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/>.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# display.exp Test display commands
|
|
|
|
# Also do some printing stuff for coverage's sake.
|
|
|
|
#
|
test suite update - gdb.base/[cd]
Convert files gdb.base/[cd]*.exp to use standard_output_file et al.
* call-ar-st.exp, call-rt-st.exp, call-sc.exp,
call-signal-resume.exp, call-strs.exp, callexit.exp,
callfuncs.exp, catch-load.exp, catch-syscall.exp, charset.exp,
checkpoint.exp, chng-syms.exp, code-expr.exp, code_elim.exp,
commands.exp, completion.exp, complex.exp, cond-expr.exp,
condbreak.exp, consecutive.exp, constvars.exp, corefile.exp,
ctxobj.exp, cursal.exp, cvexpr.exp, dbx.exp, default.exp,
define.exp, del.exp, detach.exp, dfp-test.exp, display.exp,
dmsym.exp, dump.exp, dup-sect.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 18:49:03 +00:00
|
|
|
standard_testfile
|
1999-04-16 01:35:26 +00:00
|
|
|
|
test suite update - gdb.base/[cd]
Convert files gdb.base/[cd]*.exp to use standard_output_file et al.
* call-ar-st.exp, call-rt-st.exp, call-sc.exp,
call-signal-resume.exp, call-strs.exp, callexit.exp,
callfuncs.exp, catch-load.exp, catch-syscall.exp, charset.exp,
checkpoint.exp, chng-syms.exp, code-expr.exp, code_elim.exp,
commands.exp, completion.exp, complex.exp, cond-expr.exp,
condbreak.exp, consecutive.exp, constvars.exp, corefile.exp,
ctxobj.exp, cursal.exp, cvexpr.exp, dbx.exp, default.exp,
define.exp, del.exp, detach.exp, dfp-test.exp, display.exp,
dmsym.exp, dump.exp, dup-sect.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 18:49:03 +00:00
|
|
|
if {[prepare_for_testing $testfile.exp $testfile $srcfile \
|
|
|
|
{debug nowarnings}]} {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested display.exp
|
|
|
|
return -1
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
2001-09-17 20:41:22 +00:00
|
|
|
# Preserve the old timeout, and set a new one that should be
|
|
|
|
# sufficient to avoid timing out during this test.
|
|
|
|
set oldtimeout $timeout
|
|
|
|
set timeout [expr "$timeout + 60"]
|
|
|
|
verbose "Timeout is now $timeout seconds" 2
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# use this to debug:
|
|
|
|
#log_user 1
|
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
# Some coverage stuff
|
|
|
|
#
|
2011-12-03 20:20:29 +00:00
|
|
|
if !$use_gdb_stub {
|
2000-11-17 17:13:33 +00:00
|
|
|
gdb_test "kill" ".*The program is not being run.*"
|
|
|
|
gdb_test "detach" ".*"
|
|
|
|
gdb_test "run" ".*"
|
|
|
|
|
|
|
|
gdb_load ${binfile}
|
|
|
|
gdb_test "kill" ".*" "kill again"
|
|
|
|
gdb_test "detach" ".*" "detach again"
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# Ok, on to real life
|
|
|
|
#
|
1999-08-09 21:36:23 +00:00
|
|
|
if ![runto_main] then {
|
|
|
|
fail "Could not run to main - other tests will fail."
|
|
|
|
continue
|
1999-04-26 18:34:20 +00:00
|
|
|
}
|
1999-08-09 21:36:23 +00:00
|
|
|
|
2000-11-14 22:12:26 +00:00
|
|
|
# Disable hardware watchpoints if necessary.
|
|
|
|
if [target_info exists gdb,no_hardware_watchpoints] {
|
2010-06-03 23:54:18 +00:00
|
|
|
gdb_test_no_output "set can-use-hw-watchpoints 0" ""
|
2000-11-14 22:12:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-13 21:59:00 +00:00
|
|
|
set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
|
|
|
|
gdb_test "break $bp_location1" ".*Breakpoint 2.*" "break do_loops"
|
2000-11-14 22:12:26 +00:00
|
|
|
gdb_test "cont" ".*Breakpoint 2, do_loops.*" "get to do_loops"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# Create stopping points.
|
|
|
|
#
|
2000-11-14 22:12:26 +00:00
|
|
|
gdb_test "watch sum" ".*\[Ww\]atchpoint 3: sum.*" "set watch"
|
2009-11-13 21:59:00 +00:00
|
|
|
set bp_location2 [gdb_get_line_number "set breakpoint 2 here"]
|
|
|
|
gdb_test "break $bp_location2" ".*Breakpoint 4.*" "break loop end"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# Create displays for those points
|
|
|
|
#
|
|
|
|
gdb_test "info disp" ".*There are no auto-display expressions now..*" "inf disp"
|
|
|
|
gdb_test "disp i" ".*1: i = 0.*" "display i"
|
|
|
|
gdb_test "disp/x j" ".*2: /x j = 0x0.*" "display j"
|
2009-10-21 18:02:27 +00:00
|
|
|
gdb_test "disp/i &k" ".*3: x/i &k(\r\n| ) $hex:.*" "display &k"
|
2001-09-17 20:41:22 +00:00
|
|
|
gdb_test "disp/f f" ".*4: /f f = 3.1415*" "display/f f"
|
1999-04-16 01:35:26 +00:00
|
|
|
gdb_test "disp/s &sum" ".*5: x/s &sum $hex.*sum.:.*" "display/s &sum"
|
|
|
|
|
|
|
|
# Hit the displays
|
|
|
|
#
|
2001-09-17 20:41:22 +00:00
|
|
|
gdb_test "cont" ".*\[Ww\]atchpoint 3: sum.*\[1-9\]*: x/s &sum.*\[1-9\]*: /f f = 3.1415\r\n\[1-9\]*: x/i &k.*\r\n\[1-9\]*: /x j = 0x0\r\n\[1-9\]*: i = 0.*" "first disp"
|
|
|
|
gdb_test "cont" ".*\[Ww\]atchpoint 3: sum.*\[1-9\]*: x/s &sum.*\[1-9\]*: /f f = 4.1415\r\n\[1-9\]*: x/i &k.*\r\n\[1-9\]*: /x j = 0x0.*\[1-9\]*: i = 0.*" "second disp"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
gdb_test "enab disp 6" ".*No display number 6..*" "catch err"
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test_no_output "disab disp 1" "disab disp 1"
|
|
|
|
gdb_test_no_output "disab disp 2" "disab disp 2"
|
|
|
|
gdb_test_no_output "enab disp 1" "re-enab"
|
|
|
|
gdb_test_no_output "enab disp 1" "re-enab of enab"
|
|
|
|
gdb_test_no_output "undisp 5" "undisp"
|
2001-09-17 20:41:22 +00:00
|
|
|
gdb_test "info disp" ".*Auto-display expressions now in effect.*y /f f.*y /1bi &k.*n /x j.*y i.*" "info disp"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2001-09-17 20:41:22 +00:00
|
|
|
gdb_test "cont" ".*\[Ww\]atch.*5.1415.*.*i = 0.*" "next hit"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2010-05-24 22:06:59 +00:00
|
|
|
gdb_test "undisp" \
|
|
|
|
"" \
|
|
|
|
"undisp all" \
|
|
|
|
".*Delete all auto-display expressions.*y or n. $" \
|
|
|
|
"y"
|
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2011-08-09 16:21:18 +00:00
|
|
|
# Test displaying a variable that is temporarily at a bad address.
|
|
|
|
# But if we can examine what's at memory address 0, then we'll also be
|
|
|
|
# able to display it without error. Don't run the test in that case.
|
|
|
|
set can_read_0 0
|
|
|
|
gdb_test_multiple "x 0" "memory at address 0" {
|
|
|
|
-re "0x0:.*Cannot access memory at address 0x0.*$gdb_prompt $" { }
|
|
|
|
-re "0x0:.*Error accessing memory address 0x0.*$gdb_prompt $" { }
|
|
|
|
-re ".*$gdb_prompt $" {
|
|
|
|
set can_read_0 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if { !$can_read_0 } {
|
|
|
|
gdb_test "disp *p_i" ".*: \\*p_i = 0"
|
|
|
|
gdb_test "p p_i = 0x0" " = \\(int \\*\\) 0x0"
|
|
|
|
gdb_test "display" ".*: \\*p_i = <error: .*>" "display bad address"
|
|
|
|
gdb_test "p p_i = &i" " = \\(int \\*\\) $hex"
|
|
|
|
gdb_test "display" ".*: \\*p_i = 0" "display good address"
|
|
|
|
|
|
|
|
gdb_test "undisp" \
|
|
|
|
"" \
|
|
|
|
"undisp all again" \
|
|
|
|
".*Delete all auto-display expressions.*y or n. $" \
|
|
|
|
"y"
|
|
|
|
}
|
|
|
|
|
1999-08-02 23:48:37 +00:00
|
|
|
gdb_test "disab 3" ".*.*" "disab 3"
|
2000-11-14 22:12:26 +00:00
|
|
|
gdb_test "cont" ".*Breakpoint 4.*" "watch off"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# Now the printf tests
|
|
|
|
#
|
1999-08-31 01:14:27 +00:00
|
|
|
# The "finish" command may leave us mid-line in the caller on some
|
|
|
|
# targets, including but not limited to the m68k, i386 & PA. So we
|
|
|
|
# have to arrange to step until we hit the line with the call to
|
|
|
|
# "do_vars".
|
2010-05-24 22:06:59 +00:00
|
|
|
gdb_test_multiple "finish" "finish" {
|
1999-11-09 01:23:30 +00:00
|
|
|
-re ".*do_loops\\(\\);.*$gdb_prompt $" {
|
1999-08-31 01:14:27 +00:00
|
|
|
send_gdb "step\n"
|
|
|
|
exp_continue
|
|
|
|
}
|
|
|
|
-re ".*do_vars.*$gdb_prompt $" {
|
|
|
|
pass "finish"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-13 21:59:00 +00:00
|
|
|
gdb_test "step" ".*do_vars.*.*i = 9.*"
|
|
|
|
set bp_location3 [gdb_get_line_number "set breakpoint 3 here"]
|
|
|
|
gdb_test "tbreak $bp_location3" ".*breakpoint 5 a.*" "tbreak in do_vars"
|
|
|
|
gdb_test "cont" ".*do_vars.*$bp_location3.*$bp_location3.*"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# Beat on printf a bit
|
|
|
|
#
|
1999-08-02 23:48:37 +00:00
|
|
|
gdb_test "printf" ".*Argument required.*"
|
|
|
|
gdb_test "printf %d" ".*Bad format string, missing.*"
|
|
|
|
gdb_test "printf \"%d" ".*Bad format string, non-terminated.*"
|
|
|
|
gdb_test "printf \"%d%d\",i" ".*Wrong number of arguments.*"
|
1999-08-09 21:36:23 +00:00
|
|
|
gdb_test "printf \"\\\\!\\a\\f\\r\\t\\v\\b\\n\"" ".*!.*"
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test_no_output "printf \"\"" "re-set term"
|
1999-08-02 23:48:37 +00:00
|
|
|
gdb_test "printf \"\\w\"" ".*Unrecognized escape character.*"
|
|
|
|
gdb_test "printf \"%d\" j" ".*Invalid argument syntax.*"
|
2007-09-04 14:18:47 +00:00
|
|
|
gdb_test "printf \"%p\\n\", 0" "\\(nil\\)"
|
|
|
|
gdb_test "printf \"%p\\n\", 1" "0x1"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2000-11-14 22:12:26 +00:00
|
|
|
# play with "print", too
|
1999-04-16 01:35:26 +00:00
|
|
|
#
|
2013-07-25 10:16:08 +00:00
|
|
|
gdb_test "print/k j" ".*Undefined output format.*"
|
2009-05-28 01:05:14 +00:00
|
|
|
gdb_test "print/d j" " = 0\[\\r\\n\]+" "debug test output 1"
|
|
|
|
gdb_test "print/r j" " = 0\[\\r\\n\]+" "debug test output 1a"
|
|
|
|
gdb_test "print/x j" " = 0x0\[\\r\\n\]+" "debug test output 2"
|
|
|
|
gdb_test "print/r j" " = 0x0\[\\r\\n\]+" "debug test output 2a"
|
|
|
|
gdb_test "print j" " = 0\[\\r\\n\]+" "debug test output 3"
|
1999-08-02 23:48:37 +00:00
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
# x/0 j doesn't produce any output and terminates PA64 process when testing
|
1999-08-02 23:48:37 +00:00
|
|
|
if [istarget "hppa2.0w-hp-hpux11*"] {
|
|
|
|
xfail "'x/0 j' terminates PA64 process - skipped test point"
|
1999-06-28 16:06:02 +00:00
|
|
|
} else {
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test_no_output "x/0 j"
|
1999-08-02 23:48:37 +00:00
|
|
|
}
|
|
|
|
if [istarget "hppa*-hp-hpux*"] {
|
|
|
|
# on HP-UX you could access the first page without getting an error
|
|
|
|
gdb_test "x/rx j" ".*(Cannot access|Error accessing) memory.*|.*0xa:\[ \t\]*\[0-9\]+.*"
|
1999-06-28 16:06:02 +00:00
|
|
|
}
|
2000-11-14 22:12:26 +00:00
|
|
|
gdb_test "print/0 j" ".*Item count other than 1 is meaningless.*" "print/0 j"
|
2007-09-05 00:51:49 +00:00
|
|
|
gdb_test "print/s sum" " = 1000" "ignored s"
|
2000-11-14 22:12:26 +00:00
|
|
|
gdb_test "print/i sum" ".*Format letter.*is meaningless.*.*" "no i"
|
|
|
|
gdb_test "print/a &sum" ".*= $hex.*<sum>.*"
|
1999-08-31 01:14:27 +00:00
|
|
|
# If the constant below is larger than the length of main, then
|
|
|
|
# this test will (incorrectly) fail. So use a small number.
|
2000-11-14 22:12:26 +00:00
|
|
|
gdb_test "print/a main+4" ".*= $hex.*<.*>.*"
|
|
|
|
gdb_test "print/a \$pc" ".*= $hex.*<do_vars+.*>.*"
|
|
|
|
gdb_test "print/a &&j" ".*A .* error in expression.*"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# Done!
|
|
|
|
#
|
|
|
|
gdb_exit
|
2001-09-17 20:41:22 +00:00
|
|
|
|
|
|
|
# Restore the preserved old timeout value.
|
|
|
|
set timeout $oldtimeout
|
|
|
|
verbose "Timeout is now $timeout seconds" 2
|
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
return 0
|