]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.pascal/hello.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.pascal / hello.exp
1 # Copyright 2007-2013 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 load_lib "pascal.exp"
17
18 standard_testfile .pas
19
20 if {[gdb_compile_pascal "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug ]] != "" } {
21 return -1
22 }
23
24 clean_restart ${testfile}
25 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
26 set bp_location2 [gdb_get_line_number "set breakpoint 2 here"]
27
28 if { [gdb_breakpoint ${srcfile}:${bp_location1}] } {
29 pass "setting breakpoint 1"
30 }
31 if { [gdb_breakpoint ${srcfile}:${bp_location2}] } {
32 pass "setting breakpoint 2"
33 }
34
35 # Verify that "start" lands inside the right procedure.
36 if { [gdb_start_cmd] < 0 } {
37 untested start
38 return -1
39 }
40
41 # This test fails for gpc
42 # because debug information for 'main'
43 # is in some <implicit code>
44 gdb_test "" \
45 ".* at .*hello.pas.*" \
46 "start"
47
48 gdb_test "cont" \
49 "Breakpoint .*:${bp_location1}.*" \
50 "Going to first breakpoint"
51 gdb_test "print st" \
52 ".* = ''.*" \
53 "Empty string check"
54
55 # This test also fails for gpc because the program
56 # stops after the string has been written
57 # while it should stop before writing it
58 if { $pascal_compiler_is_gpc } {
59 setup_xfail *-*-*
60 }
61 gdb_test "cont" \
62 "Breakpoint .*:${bp_location2}.*" \
63 "Going to second breakpoint"
64 gdb_test "print st" \
65 ".* = 'Hello, world!'.*" \
66 "String after assignment check"