1 # step.exp -- Expect script to test gdb with step.c
2 # Copyright (C) 1992, 1997, 2007, 2008, 2009 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # This file was written by Hiro Sugawara. (hiro@lynx.com)
19 # This test really needs some major surgery to be acceptable, but
20 # I'm just about burnt out on lynx work, so I'm not doing it now.
22 # * The test has an indeterminate number of pass/fails
23 # for each run (it runs a small group of tests until
24 # it's timer kicks off). This is very bad for nightly
25 # automated regression testing.
27 # * It tries to "step" from withint he prologue of a
28 # function. This isn't support in gdb (it's going
29 # to act like a continue).
31 # * This test rarely check that it stopped in sensible
32 # places. (see previous bullet -- this test doesn't
33 # catch the fact it continued rather than stepped)
42 proc set_bp { where } {
45 send_gdb "break $where\n"
46 # The first regexp is what we get with -g, the second without -g.
48 -re "Break.* at .*: file .*, line \[0-9\]*.*$gdb_prompt $" {}
49 -re "Breakpoint \[0-9\]* at 0x\[0-9a-f\]*.*$gdb_prompt $" {}
50 -re "$gdb_prompt $" { fail "setting breakpoint at $where" ; return 0 }
51 timeout { fail "setting breakpoint at $where (timeout)" ; return 0 }
56 proc step_it { cmd } {
62 -re "0x\[0-9A-Fa-f\]* *in.*\r\n$gdb_prompt $" { pass "step_it"; return 0 }
63 -re "0x\[0-9A-Fa-f\]* *\[0-9\]*.*\r\n$gdb_prompt $" { pass "step_it"; return 1 }
64 -re "Program exited .*\n$gdb_prompt $" {
68 -re "$gdb_prompt $" { fail "single-stepping ($cmd).\n" ; return -1 }
69 timeout { fail "single-stepping ($cmd) timout.\n" ; return -1 }
81 proc continue_all {} {
86 -re "Breakpoint \[0-9\]*, thread\[0-9\]* .*$gdb_prompt $" {
90 -re "Program exited .*\n$gdb_prompt $" {
94 -re "$gdb_prompt $" { fail "continue" ; return -1 }
95 timeout { fail "continue (timeout)" ; return -1 }
99 proc check_threads { num_threads } {
103 send_gdb "info threads\n"
104 while { $num_threads > 0 } {
106 -re "\\* *\[0-9\]* process \[0-9\]* thread \[0-9\]* .*\n" {
108 set num_threads [expr $num_threads - 1]
110 -re " *\[0-9\]* process \[0-9\]* thread \[0-9\]* .*\n" {
111 set num_threads [expr $num_threads - 1]
113 -re "$gdb_prompt $" {
114 if { $num_threads < 0 } {
115 fail "check_threads (too many)" ; return -1
119 timeout { fail "check_threads (timeout)" ; return -1 }
123 if { $curr_thread == 0 } {
124 fail "check_threads (no current thread)\n"
127 if { $curr_thread > 1 } {
128 fail "check_threads (more than one current thread)\n"
134 proc test_cond_wait {} {
135 global program_exited
141 while { [step_inst] } {
142 if { $program_exited } { break }
144 if { $stepi_counter > 30 } {
145 fail "too many stepi's per line\n"
149 if { $program_exited } { break }
151 if { $program_exited } { break }
153 if { $program_exited } { break }
170 # Start with a fresh gdb.
174 gdb_reinitialize_dir $srcdir/$subdir
175 gdb_load $objdir/$subdir/$binfile
177 send_gdb "set width 0\n"
178 gdb_expect -re "$gdb_prompt $"
183 # Check to see if we have an executable to test. If not, then either we
184 # haven't tried to compile one, or the compilation failed for some reason.
185 # In either case, just notify the user and skip the tests in this file.
190 if ![file exists $objdir/$subdir/$binfile] then {
192 warning "$binfile does not exist; tests suppressed."