1 # Copyright
(C
) 1988, 90, 91, 92, 95, 96, 1997 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
2 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
, write to the Free Software
15 # Foundation
, 51 Franklin Street
, Fifth Floor
, Boston
, MA
02110-1301, USA.
17 # This file was written by Mike Stump
<mrs@cygnus.com
>
20 # mike_cleanup
-- remove
any files that are created by the testcase
22 proc mike_cleanup
{ src_code output_file assembly_file
} {
23 remote_file build
delete $output_file $assembly_file
27 # prebase
-- sets up a Mike Stump
(mrs@cygnus.com
) style G
++ test
30 global compiler_output
31 global not_compiler_output
32 global compiler_result
33 global not_compiler_result
40 set compiler_output
"^$"
41 set not_compiler_output
".*Internal compiler error.*"
42 set compiler_result
""
43 set not_compiler_result
""
44 set program_output
".*PASS.*"
48 set target_regexp
".*"
54 proc postbase
{ src_code run groups
args } {
58 global not_compiler_output
59 global compiler_output
60 global compiler_result
61 global not_compiler_result
72 if ![regexp $target_regexp $target_triplet
] {
73 unsupported $subdir
/$src_code
77 if { [llength $
args] > 0 } {
78 set comp_options
[lindex $
args 0]
83 set fail_message $subdir
/$src_code
84 set pass_message $subdir
/$src_code
86 if [info exists GROUP
] {
87 if {[lsearch $groups $GROUP
] == -1} {
92 if [string match $run yes
] {
96 set output_file
"$tmpdir/[file tail [file rootname $src_code]]"
97 set assembly_file
"$output_file"
98 append assembly_file
".S"
100 set compile_type
"none"
105 set compile_type
"assembly"
106 set output_file $assembly_file
110 set compile_type
"object"
111 append output_file
".o"
115 set compile_type
"executable"
116 append output_file
".exe"
120 set compile_type
"executable"
121 append output_file
".exe"
127 set compile_type
"none"
131 set src_file
"$srcdir/$subdir/$src_code"
134 if { $comp_options
!= "" } {
135 lappend options
"additional_flags=$comp_options"
138 if ![ishost
"*-dos-*"] {
139 lappend options
"libs=-lstdc++ -lg++"
141 lappend options
"libs=-lstdcxx -lgxx"
144 set comp_output
[g
++_target_compile $src_file $output_file $compile_type $options
]
148 #
Delete things like
"ld.so warning" messages.
149 set comp_output
[prune_warnings $comp_output
]
151 if [regexp
-- $not_compiler_output $comp_output
] {
152 if { $verbose
> 1 } {
153 send_user
"\nChecking:\n$not_compiler_output\nto make sure it does not match:\n$comp_output\nbut it does.\n\n"
155 send_log
"\nCompiler output:\n$comp_output\n\n"
158 # The framework doesn
't like to see any error remnants,
161 if [info exists errorInfo] {
165 mike_cleanup $src_code $output_file $assembly_file
169 # remove any leftover CRs.
170 regsub -all -- "\r" $comp_output "" comp_output
172 regsub -all "(^|\n)\[^\n\]*linker input file unused since linking not done" $comp_output "" comp_output
173 regsub -all "(^|\n)\[^\n\]*file path prefix \[^\n\]* never used" $comp_output "" comp_output
175 set unsupported_message [${tool}_check_unsupported_p $comp_output]
176 if { $unsupported_message != "" } {
177 unsupported "$subdir/$src_code: $unsupported_message"
178 mike_cleanup $src_code $output_file $assembly_file
182 if { $verbose > 1 } {
183 send_user "\nChecking:\n$compiler_output\nto see if it matches:\n$comp_output\n"
185 send_log "\nCompiler output:\n$comp_output\n\n"
187 if [regexp -- $compiler_output $comp_output] {
188 if { $verbose > 1 } {
189 send_user "Yes, it matches.\n\n"
192 if [file exists [file rootname [file tail $src_code]].s] {
193 set fd [open [file rootname [file tail $src_code]].s r]
196 if { $compiler_result != "" } {
197 verbose "Checking .s file for $compiler_result" 2
198 if [regexp -- $compiler_result $dot_s] {
199 verbose "Yes, it matches." 2
201 verbose "Nope, doesn't match.
" 2
206 if { $not_compiler_result
!= "" } {
207 verbose
"Checking .s file for not $not_compiler_result" 2
208 if ![regexp
-- $not_compiler_result $dot_s
] {
209 verbose
"Nope, not found (that's good)." 2
211 verbose
"Uh oh, it was found." 2
217 if [string match $run yes
] {
218 set result
[g
++_load $output_file
]
219 set status [lindex $result
0]
220 set output
[lindex $result
1]
222 if { $
status == -1 } {
223 mike_cleanup $src_code $output_file $assembly_file
226 if { $verbose
> 1 } {
227 send_user
"Checking:\n$program_output\nto see if it matches:\n$output\n\n"
229 if ![regexp
-- $program_output $output
] {
231 if { $verbose
> 1 } {
232 send_user
"Nope, does not match.\n\n"
235 if { $verbose
> 1 } {
236 send_user
"Yes, it matches.\n\n"
241 if { $verbose
> 1 } {
242 send_user
"Nope, does not match.\n\n"
246 if [string match $pass
"yes"] {
252 # The framework doesn
't like to see any error remnants,
255 if [info exists errorInfo] {
260 mike_cleanup $src_code $output_file $assembly_file