run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / cursal.exp
1 # Copyright 2004, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
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
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 if $tracelevel {
17 strace $tracelevel
18 }
19
20
21 set testfile "cursal"
22 set srcfile ${testfile}.c
23 set binfile ${objdir}/${subdir}/${testfile}
24
25 if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != ""} {
26 untested "Couldn't compile $srcfile"
27 return -1
28 }
29
30 gdb_exit
31 gdb_start
32 gdb_reinitialize_dir $srcdir/$subdir
33 gdb_file_cmd ${binfile}
34 gdb_test_no_output "set listsize 1"
35
36 # initial sal should be first statement in main
37 gdb_test "list" \
38 "v0 = 0;" \
39 "list before run"
40
41 gdb_load ${binfile}
42 if {! [runto_main]} {
43 return -1
44 }
45
46 gdb_test "list" \
47 "v0 = 0;" \
48 "list in main"
49
50 if {! [runto "func2"]} {
51 return -1
52 }
53
54 gdb_test "list" \
55 "v2 = 2;" \
56 "list in func2"
57
58 # make sure backtrace doesn't change current source location.
59 gdb_test "backtrace" \
60 ".*"
61 gdb_test "list -1" \
62 "v2 = 2;" \
63 "list after backtrace"
64
65 # check the window
66 gdb_test_no_output "set listsize 3"
67
68 if {! [runto_main]} {
69 return -1
70 }
71 gdb_test "list" \
72 "func1 \\(\\);" \
73 "list size 3"
74
75 return 0
This page took 0.044857 seconds and 5 git commands to generate.