| OLD | NEW |
| 1 # Copyright 2008-2012 Free Software Foundation, Inc. | 1 # Copyright 2008-2012 Free Software Foundation, Inc. |
| 2 # | 2 # |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 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 | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 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/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 if $tracelevel then { | |
| 17 strace $tracelevel | |
| 18 } | |
| 19 | |
| 20 load_lib "pascal.exp" | 16 load_lib "pascal.exp" |
| 21 | 17 |
| 22 set testfile "integers" | 18 standard_testfile .pas |
| 23 set srcfile ${testfile}.pas | |
| 24 set binfile ${objdir}/${subdir}/${testfile}$EXEEXT | |
| 25 | 19 |
| 26 if {[gdb_compile_pascal "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable
[list debug ]] != "" } { | 20 if {[gdb_compile_pascal "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable
[list debug ]] != "" } { |
| 27 return -1 | 21 return -1 |
| 28 } | 22 } |
| 29 | 23 |
| 30 gdb_exit | 24 clean_restart ${testfile} |
| 31 gdb_start | |
| 32 gdb_reinitialize_dir $srcdir/$subdir | |
| 33 gdb_load ${binfile} | |
| 34 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"] | 25 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"] |
| 35 set bp_location2 [gdb_get_line_number "set breakpoint 2 here"] | 26 set bp_location2 [gdb_get_line_number "set breakpoint 2 here"] |
| 36 | 27 |
| 37 if { [gdb_breakpoint ${srcfile}:${bp_location1}] } { | 28 if { [gdb_breakpoint ${srcfile}:${bp_location1}] } { |
| 38 pass "setting breakpoint 1" | 29 pass "setting breakpoint 1" |
| 39 } | 30 } |
| 40 if { [gdb_breakpoint ${srcfile}:${bp_location2}] } { | 31 if { [gdb_breakpoint ${srcfile}:${bp_location2}] } { |
| 41 pass "setting breakpoint 2" | 32 pass "setting breakpoint 2" |
| 42 } | 33 } |
| 43 | 34 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 # Thus we need to use 'set var i' | 111 # Thus we need to use 'set var i' |
| 121 gdb_test "set var i := 2" " := 2" | 112 gdb_test "set var i := 2" " := 2" |
| 122 gdb_test "print i" " = 2" "Testing new i value" | 113 gdb_test "print i" " = 2" "Testing new i value" |
| 123 | 114 |
| 124 gdb_test "cont" \ | 115 gdb_test "cont" \ |
| 125 "Breakpoint .*:${bp_location2}.*" \ | 116 "Breakpoint .*:${bp_location2}.*" \ |
| 126 "Going to second breakpoint" | 117 "Going to second breakpoint" |
| 127 gdb_test "print i" \ | 118 gdb_test "print i" \ |
| 128 ".* = 5.*" \ | 119 ".* = 5.*" \ |
| 129 "Value of i after assignment" | 120 "Value of i after assignment" |
| OLD | NEW |