Do not set prms_id/bug_id anymore.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / cursal.exp
CommitLineData
4c38e0a4 1# Copyright 2004, 2007, 2008, 2009, 2010 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}
c789492a
FL
34gdb_test "set listsize 1" \
35 ".*"
36
37# initial sal should be first statement in main
38gdb_test "list" \
39 "v0 = 0;" \
40 "list before run"
017b5bd4
DJ
41
42gdb_load ${binfile}
c789492a
FL
43if {! [runto_main]} {
44 return -1
45}
46
47gdb_test "list" \
48 "v0 = 0;" \
49 "list in main"
50
51if {! [runto "func2"]} {
52 return -1
53}
54
55gdb_test "list" \
56 "v2 = 2;" \
57 "list in func2"
58
59# make sure backtrace doesn't change current source location.
60gdb_test "backtrace" \
61 ".*"
62gdb_test "list -1" \
63 "v2 = 2;" \
64 "list after backtrace"
65
66# check the window
67gdb_test "set listsize 3" \
68 ".*"
69if {! [runto_main]} {
70 return -1
71}
72gdb_test "list" \
73 "func1 \\(\\);" \
74 "list size 3"
75
76return 0
This page took 0.509109 seconds and 4 git commands to generate.