Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Side by Side Diff: gdb/testsuite/gdb.pascal/hello.exp

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.pascal/gdb11492.exp ('k') | gdb/testsuite/gdb.pascal/integers.exp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2007-2012 Free Software Foundation, Inc. 1 # Copyright 2007-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 "hello" 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 22 matching lines...) Expand all
66 # while it should stop before writing it 57 # while it should stop before writing it
67 if { $pascal_compiler_is_gpc } { 58 if { $pascal_compiler_is_gpc } {
68 setup_xfail *-*-* 59 setup_xfail *-*-*
69 } 60 }
70 gdb_test "cont" \ 61 gdb_test "cont" \
71 "Breakpoint .*:${bp_location2}.*" \ 62 "Breakpoint .*:${bp_location2}.*" \
72 "Going to second breakpoint" 63 "Going to second breakpoint"
73 gdb_test "print st" \ 64 gdb_test "print st" \
74 ".* = 'Hello, world!'.*" \ 65 ".* = 'Hello, world!'.*" \
75 "String after assignment check" 66 "String after assignment check"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.pascal/gdb11492.exp ('k') | gdb/testsuite/gdb.pascal/integers.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698