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