Fix EH handling issue in last change:
[official-gcc.git] / libstdc++-v3 / testsuite / lib / gdb-test.exp
blob66dcc666faa603f1f97d7fe3df734f5e88f9f98f
1 # Copyright (C) 2009-2013 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 GCC; see the file COPYING3. If not see
15 # <http://www.gnu.org/licenses/>.
17 global gdb_tests
18 set gdb_tests {}
20 # Scan a file for markers and fill in the gdb_marker array for that
21 # file. Any error in this script is simply thrown; errors here are
22 # programming errors in the test suite itself and should not be
23 # caught.
24 proc scan_gdb_markers {filename} {
25 global gdb_markers
27 if {[info exists gdb_markers($filename,-)]} {
28 return
31 set fd [open $filename]
32 set lineno 1
33 while {! [eof $fd]} {
34 set line [gets $fd]
35 if {[regexp -- "Mark (\[a-zA-Z0-9\]+)" $line ignore marker]} {
36 set gdb_markers($filename,$marker) $lineno
38 incr lineno
40 close $fd
42 set gdb_markers($filename,-) {}
45 # Find a marker in a source file, and return the marker's line number.
46 proc get_line_number {filename marker} {
47 global gdb_markers
49 scan_gdb_markers $filename
50 return $gdb_markers($filename,$marker)
53 # Make note of a gdb test. A test consists of a variable name and an
54 # expected result.
55 proc note-test {var result} {
56 global gdb_tests
58 lappend gdb_tests $var $result 0
61 # A test that uses a regular expression. This is like note-test, but
62 # the result is a regular expression that is matched against the
63 # output.
64 proc regexp-test {var result} {
65 global gdb_tests
67 lappend gdb_tests $var $result 1
70 # A test of 'whatis'. This tests a type rather than a variable.
71 proc whatis-test {var result} {
72 global gdb_tests
74 lappend gdb_tests $var $result whatis
77 # Utility for testing variable values using gdb, invoked via dg-final.
78 # Tests all tests indicated by note-test and regexp-test.
80 # Argument 0 is the marker on which to put a breakpoint
81 # Argument 2 handles expected failures and the like
82 proc gdb-test { marker {selector {}} } {
83 if { ![isnative] || [is_remote target] } { return }
85 if {[string length $selector] > 0} {
86 switch [dg-process-target $selector] {
87 "S" { }
88 "N" { return }
89 "F" { setup_xfail "*-*-*" }
90 "P" { }
94 set do_whatis_tests [gdb_batch_check "python print gdb.type_printers" \
95 "\\\[\\\]"]
96 if {!$do_whatis_tests} {
97 send_log "skipping 'whatis' tests - gdb too old"
100 # This assumes that we are three frames down from dg-test, and that
101 # it still stores the filename of the testcase in a local variable "name".
102 # A cleaner solution would require a new DejaGnu release.
103 upvar 2 name testcase
104 upvar 2 prog prog
106 set line [get_line_number $prog $marker]
108 set gdb_name $::env(GUALITY_GDB_NAME)
109 set testname "$testcase"
110 set output_file "[file rootname [file tail $prog]].exe"
111 set cmd_file "[file rootname [file tail $prog]].gdb"
113 global srcdir
114 set pycode [file join $srcdir .. python libstdcxx v6 printers.py]
116 global gdb_tests
118 set fd [open $cmd_file "w"]
119 puts $fd "source $pycode"
120 puts $fd "python register_libstdcxx_printers(None)"
121 puts $fd "break $line"
122 puts $fd "run"
124 set count 0
125 foreach {var result kind} $gdb_tests {
126 incr count
127 set gdb_var($count) $var
128 set gdb_expected($count) $result
129 if {$kind == "whatis"} {
130 if {$do_whatis_tests} {
131 set gdb_is_type($count) 1
132 set gdb_command($count) "whatis $var"
133 } else {
134 unsupported "$testname"
135 close $fd
136 return
138 } else {
139 set gdb_is_type($count) 0
140 set gdb_is_regexp($count) $kind
141 set gdb_command($count) "print $var"
143 puts $fd $gdb_command($count)
145 set gdb_tests {}
147 puts $fd "quit"
148 close $fd
150 send_log "Spawning: $gdb_name -nx -nw -quiet -batch -x $cmd_file ./$output_file\n"
151 set res [remote_spawn target "$gdb_name -nx -nw -quiet -batch -x $cmd_file ./$output_file"]
152 if { $res < 0 || $res == "" } {
153 unsupported "$testname"
154 return
157 set test_counter 0
158 remote_expect target [timeout_value] {
159 -re {^(type|\$([0-9]+)) = ([^\n\r]*)[\n\r]+} {
160 send_log "got: $expect_out(buffer)"
162 incr test_counter
163 set first $expect_out(3,string)
165 if {$gdb_is_type($test_counter)} {
166 if {$expect_out(1,string) != "type"} {
167 error "gdb failure"
169 set match [expr {![string compare $first \
170 $gdb_expected($test_counter)]}]
171 } elseif {$gdb_is_regexp($test_counter)} {
172 set match [regexp -- $gdb_expected($test_counter) $first]
173 } else {
174 set match [expr {![string compare $first \
175 $gdb_expected($test_counter)]}]
178 if {$match} {
179 pass "$testname $gdb_command($test_counter)"
180 } else {
181 fail "$testname $gdb_command($test_counter)"
182 verbose " got =>$first<="
183 verbose "expected =>$gdb_expected($test_counter)<="
186 if {$test_counter == $count} {
187 remote_close target
188 return
189 } else {
190 exp_continue
194 -re {Python scripting is not supported in this copy of GDB.[\n\r]+} {
195 unsupported "$testname"
196 remote_close target
197 return
200 -re {^[^$][^\n\r]*[\n\r]+} {
201 send_log "skipping: $expect_out(buffer)"
202 exp_continue
205 timeout {
206 unsupported "$testname"
207 remote_close target
208 return
212 remote_close target
213 unsupported "$testname"
214 return
217 # Invoke gdb with a command and pattern-match the output.
218 proc gdb_batch_check {command pattern} {
219 set gdb_name $::env(GUALITY_GDB_NAME)
220 set cmd "$gdb_name -nw -nx -quiet -batch -ex \"$command\""
221 send_log "Spawning: $cmd\n"
222 if [catch { set res [remote_spawn target "$cmd"] } ] {
223 return 0
225 if { $res < 0 || $res == "" } {
226 return 0
229 remote_expect target [timeout_value] {
230 -re $pattern {
231 return 1
234 -re {^[^\n\r]*[\n\r]+} {
235 verbose "skipping: $expect_out(buffer)"
236 exp_continue
239 timeout {
240 remote_close target
241 return 0
245 remote_close target
246 return 0
249 # Check for a new-enough version of gdb. The pretty-printer tests
250 # require gdb 7.3, but we don't want to test versions, so instead we
251 # check for the python "lookup_global_symbol" method, which is in 7.3
252 # but not earlier versions.
253 # Return 1 if the version is ok, 0 otherwise.
254 proc gdb_version_check {} {
255 return [gdb_batch_check "python print gdb.lookup_global_symbol" \
256 "<built-in function lookup_global_symbol>"]