Updated copyright notices for most files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.pascal / hello.exp
CommitLineData
9b254dd1 1# Copyright 2007, 2008 Free Software Foundation, Inc.
a912286e
DJ
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
16if $tracelevel then {
17 strace $tracelevel
18}
19
20load_lib "pascal.exp"
21
22set testfile "hello"
23set srcfile ${testfile}.pas
24set binfile ${objdir}/${subdir}/${testfile}
25
26if {[gdb_compile_pascal "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug ]] != "" } {
27 return -1
28}
29
30gdb_exit
31gdb_start
32gdb_reinitialize_dir $srcdir/$subdir
33gdb_load ${binfile}
34set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
35set bp_location2 [gdb_get_line_number "set breakpoint 2 here"]
36
37if { [gdb_breakpoint ${srcfile}:${bp_location1}] } {
38 pass "setting breakpoint 1"
39}
40if { [gdb_breakpoint ${srcfile}:${bp_location2}] } {
41 pass "setting breakpoint 2"
42}
43
44# Verify that "start" lands inside the right procedure.
45if { [gdb_start_cmd] < 0 } {
46 untested start
47 return -1
48}
49
50# This test fails for gpc
51# because debug information for 'main'
52# is in some <implicit code>
53gdb_test "" \
54 ".* at .*hello.pas.*" \
55 "start"
56
57gdb_test "cont" \
58 "Breakpoint .*:${bp_location1}.*" \
59 "Going to first breakpoint"
60gdb_test "print st" \
61 ".* = ''.*" \
62 "Empty string check"
63
64# This test also fails for gpc because the program
65# stops after the string has been written
66# while it should stop before writing it
67if { $pascal_compiler_is_gpc } {
68 setup_xfail *-*-*
69}
70gdb_test "cont" \
71 "Breakpoint .*:${bp_location2}.*" \
72 "Going to second breakpoint"
73gdb_test "print st" \
74 ".* = 'Hello, world!'.*" \
75 "String after assignment check"
This page took 0.053933 seconds and 4 git commands to generate.