OSDN Git Service

Switch the license of all .exp files to GPLv3.
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.base / cursal.exp
1 # Copyright 2004, 2007 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 set prms_id 0
21 set bug_id 0
22
23 set testfile "cursal"
24 set srcfile ${testfile}.c
25 set binfile ${objdir}/${subdir}/${testfile}
26
27 if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != ""} {
28     untested "Couldn't compile $srcfile"
29     return -1
30 }
31
32 gdb_exit
33 gdb_start
34 gdb_reinitialize_dir $srcdir/$subdir
35 gdb_file_cmd ${binfile}
36 gdb_test "set listsize 1" \
37     ".*"
38
39 # initial sal should be first statement in main
40 gdb_test "list" \
41     "v0 = 0;" \
42     "list before run"
43
44 gdb_load ${binfile}
45 if {! [runto_main]} {
46     return -1
47 }
48
49 gdb_test "list" \
50     "v0 = 0;" \
51     "list in main"
52
53 if {! [runto "func2"]} {
54     return -1
55 }
56
57 gdb_test "list" \
58     "v2 = 2;" \
59     "list in func2"
60
61 # make sure backtrace doesn't change current source location.
62 gdb_test "backtrace" \
63     ".*"
64 gdb_test "list -1" \
65     "v2 = 2;" \
66     "list after backtrace"
67
68 # check the window
69 gdb_test "set listsize 3" \
70     ".*"
71 if {! [runto_main]} {
72     return -1
73 }
74 gdb_test "list" \
75     "func1 \\(\\);" \
76     "list size 3"
77
78 return 0