Update copyright year range in header of all files managed by GDB
[binutils-gdb.git] / gdb / testsuite / gdb.pascal / hello.exp
blobc6d38dd800f55b4592c6995996e0d8bcf84e499b
1 # Copyright 2007-2023 Free Software Foundation, Inc.
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.
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.
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/>.
16 load_lib "pascal.exp"
18 standard_testfile .pas
20 if {[gdb_compile_pascal "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug ]] != "" } {
21   return -1
24 clean_restart ${testfile}
26 if { ![runto_main] } {
27     return
30 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
31 set bp_location2 [gdb_get_line_number "set breakpoint 2 here"]
33 if { [gdb_breakpoint ${srcfile}:${bp_location1}] } {
34     pass "setting breakpoint 1"
36 if { [gdb_breakpoint ${srcfile}:${bp_location2}] } {
37     pass "setting breakpoint 2"
40 gdb_test "cont" \
41          "Breakpoint .*:${bp_location1}.*" \
42          "Going to first breakpoint"
43 gdb_test "print st" \
44          ".* = ''.*" \
45          "empty string check"
47 # This test also fails for gpc because the program
48 # stops after the string has been written
49 # while it should stop before writing it 
50 if { $pascal_compiler_is_gpc } {
51     setup_xfail *-*-*
53 gdb_test "cont" \
54          "Breakpoint .*:${bp_location2}.*" \
55          "Going to second breakpoint"
56 gdb_test "print st" \
57          ".* = 'Hello, world!'.*" \
58          "string after assignment check"