mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-12 03:43:33 +08:00
cdc7edd7b1
Changes in v3: Fixed incorrect substitutions. This fixes offender testcases that have test names starting with uppercase when using gdb_test in a single line construct. gdb/testsuite/ChangeLog 2016-12-01 Luis Machado <lgustavo@codesourcery.com> Fix test names starting with uppercase throughout the files. * gdb.arch/i386-mpx-simple_segv.exp * gdb.arch/i386-mpx.exp * gdb.arch/i386-permbkpt.exp * gdb.arch/pa-nullify.exp * gdb.arch/powerpc-d128-regs.exp * gdb.arch/vsx-regs.exp * gdb.base/bfp-test.exp * gdb.base/break.exp * gdb.base/breakpoint-shadow.exp * gdb.base/callfuncs.exp * gdb.base/charset.exp * gdb.base/commands.exp * gdb.base/completion.exp * gdb.base/dfp-test.exp * gdb.base/echo.exp * gdb.base/ending-run.exp * gdb.base/eval.exp * gdb.base/expand-psymtabs.exp * gdb.base/float128.exp * gdb.base/floatn.exp * gdb.base/foll-exec-mode.exp * gdb.base/gdb1056.exp * gdb.base/gdb11531.exp * gdb.base/kill-after-signal.exp * gdb.base/multi-forks.exp * gdb.base/overlays.exp * gdb.base/pending.exp * gdb.base/sepdebug.exp * gdb.base/testenv.exp * gdb.base/valgrind-db-attach.exp * gdb.base/watch_thread_num.exp * gdb.base/watchpoint-cond-gone.exp * gdb.base/watchpoint.exp * gdb.base/watchpoints.exp * gdb.cp/arg-reference.exp * gdb.cp/baseenum.exp * gdb.cp/operator.exp * gdb.cp/shadow.exp * gdb.dwarf2/dw2-op-out-param.exp * gdb.dwarf2/dw2-reg-undefined.exp * gdb.go/chan.exp * gdb.go/hello.exp * gdb.go/integers.exp * gdb.go/methods.exp * gdb.go/package.exp * gdb.guile/scm-parameter.exp * gdb.guile/scm-progspace.exp * gdb.guile/scm-value.exp * gdb.mi/mi-pending.exp * gdb.mi/user-selected-context-sync.exp * gdb.multi/multi-attach.exp * gdb.multi/tids.exp * gdb.opt/clobbered-registers-O2.exp * gdb.pascal/floats.exp * gdb.pascal/integers.exp * gdb.python/py-block.exp * gdb.python/py-events.exp * gdb.python/py-parameter.exp * gdb.python/py-symbol.exp * gdb.python/py-symtab.exp * gdb.python/py-type.exp * gdb.python/py-value.exp * gdb.python/py-xmethods.exp * gdb.python/python.exp * gdb.reverse/break-precsave.exp * gdb.reverse/consecutive-precsave.exp * gdb.reverse/finish-precsave.exp * gdb.reverse/i386-precsave.exp * gdb.reverse/machinestate-precsave.exp * gdb.reverse/sigall-precsave.exp * gdb.reverse/solib-precsave.exp * gdb.reverse/step-precsave.exp * gdb.reverse/until-precsave.exp * gdb.reverse/watch-precsave.exp * gdb.server/ext-attach.exp * gdb.server/ext-restart.exp * gdb.server/ext-run.exp * gdb.server/ext-wrapper.exp * gdb.stabs/gdb11479.exp * gdb.stabs/weird.exp * gdb.threads/attach-many-short-lived-threads.exp * gdb.threads/kill.exp * gdb.threads/watchpoint-fork.exp
118 lines
3.3 KiB
Plaintext
118 lines
3.3 KiB
Plaintext
# Copyright 2008-2016 Free Software Foundation, Inc.
|
|
|
|
# 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
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# This file is part of the GDB testsuite. It tests stepping over
|
|
# consecutive instructions in a process record logfile.
|
|
|
|
# This test suitable only for process record-replay
|
|
if ![supports_process_record] {
|
|
return
|
|
}
|
|
|
|
standard_testfile consecutive-reverse.c
|
|
set precsave [standard_output_file consecutive.precsave]
|
|
|
|
if { [prepare_for_testing $testfile.exp $testfile $srcfile] } {
|
|
return -1
|
|
}
|
|
|
|
runto main
|
|
|
|
if [supports_process_record] {
|
|
# Activate process record/replay
|
|
gdb_test_no_output "record" "Turn on process record"
|
|
}
|
|
|
|
set end_location [gdb_get_line_number "end of main" ]
|
|
gdb_test "break $end_location" \
|
|
"Breakpoint $decimal at .*$srcfile, line $end_location\." \
|
|
"BP at end of main"
|
|
|
|
gdb_test "continue" "Breakpoint .* end of main .*" "run to end of main"
|
|
|
|
gdb_test "record save $precsave" \
|
|
"Saved core file $precsave with execution log\." \
|
|
"save process recfile"
|
|
|
|
gdb_test "kill" "" "kill process, prepare to debug log file" \
|
|
"Kill the program being debugged\\? \\(y or n\\) " "y"
|
|
|
|
gdb_test "record restore $precsave" \
|
|
"Restored records from core file .*" \
|
|
"reload precord save file"
|
|
|
|
gdb_breakpoint foo
|
|
gdb_test "continue" "Breakpoint $decimal, foo .*" \
|
|
"continue to breakpoint in foo"
|
|
|
|
set foo1_addr 0
|
|
set foo2_addr 0
|
|
set stop_addr 0
|
|
|
|
gdb_test_multiple "x /2i \$pc" "get breakpoint address for foo" {
|
|
global hex
|
|
global foo1_addr
|
|
global foo2_addr
|
|
global gdb_prompt
|
|
|
|
-re "=> ($hex).*\[\r\n\]+ ($hex).*$gdb_prompt $" {
|
|
set foo1_addr $expect_out(1,string)
|
|
set foo2_addr $expect_out(2,string)
|
|
pass "get breakpoint address for foo"
|
|
}
|
|
}
|
|
|
|
gdb_test "break \*$foo2_addr" "Breakpoint $decimal at $foo2_addr: file .*" \
|
|
"set bp, 2nd instr"
|
|
|
|
set testmsg "stopped at bp, 2nd instr"
|
|
gdb_test_multiple "step" $testmsg {
|
|
-re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
|
|
set stop_addr $expect_out(1,string)
|
|
if [eval expr "$foo2_addr == $stop_addr"] then {
|
|
pass "stopped at bp, 2nd instr"
|
|
} else {
|
|
fail "stopped at bp, 2nd instr (wrong address)"
|
|
}
|
|
}
|
|
}
|
|
|
|
###
|
|
###
|
|
###
|
|
|
|
# Set reverse execution direction
|
|
|
|
gdb_test_no_output "set exec-dir reverse" "set reverse execution"
|
|
|
|
# Now step backward and hope to hit the first breakpoint.
|
|
|
|
set test_msg "stopped at bp in reverse, 1st instr"
|
|
gdb_test_multiple "step" "$test_msg" {
|
|
-re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
|
|
set stop_addr $expect_out(1,string)
|
|
if [eval expr "$foo1_addr == $stop_addr"] then {
|
|
pass "$test_msg"
|
|
} else {
|
|
fail "$test_msg (wrong address)"
|
|
}
|
|
}
|
|
-re "Breakpoint $decimal, foo.*$gdb_prompt $" {
|
|
gdb_test "print \$pc == $foo1_addr" \
|
|
"$decimal = 1" \
|
|
"$test_msg"
|
|
}
|
|
}
|