run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / cursal.exp
CommitLineData
7b6bb8da 1# Copyright 2004, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
c789492a
FL
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c789492a
FL
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c789492a
FL
15
16if $tracelevel {
17 strace $tracelevel
18}
19
c789492a
FL
20
21set testfile "cursal"
22set srcfile ${testfile}.c
23set binfile ${objdir}/${subdir}/${testfile}
24
25if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != ""} {
26 untested "Couldn't compile $srcfile"
27 return -1
28}
29
30gdb_exit
31gdb_start
32gdb_reinitialize_dir $srcdir/$subdir
0155cc76 33gdb_file_cmd ${binfile}
27d3a1a2 34gdb_test_no_output "set listsize 1"
c789492a
FL
35
36# initial sal should be first statement in main
37gdb_test "list" \
38 "v0 = 0;" \
39 "list before run"
017b5bd4
DJ
40
41gdb_load ${binfile}
c789492a
FL
42if {! [runto_main]} {
43 return -1
44}
45
46gdb_test "list" \
47 "v0 = 0;" \
48 "list in main"
49
50if {! [runto "func2"]} {
51 return -1
52}
53
54gdb_test "list" \
55 "v2 = 2;" \
56 "list in func2"
57
58# make sure backtrace doesn't change current source location.
59gdb_test "backtrace" \
60 ".*"
61gdb_test "list -1" \
62 "v2 = 2;" \
63 "list after backtrace"
64
65# check the window
27d3a1a2
MS
66gdb_test_no_output "set listsize 3"
67
c789492a
FL
68if {! [runto_main]} {
69 return -1
70}
71gdb_test "list" \
72 "func1 \\(\\);" \
73 "list size 3"
74
75return 0
This page took 0.603377 seconds and 4 git commands to generate.