1 # Copyright
2001, 2003, 2004, 2006, 2007 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
, write to the Free Software
15 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
17 # Please email
any bugs
, comments
, and
/or additions to this file to
:
18 # bug
-dejagnu@prep.ai.mit.edu
20 # Written by DJ Delorie
<dj@redhat.com
>
22 if {![istarget
"i*86-*-*"] && ![istarget "x86_64-*-mingw*"] } {
26 if {![istarget
"i*86-*-*pe*"] \
27 && ![istarget
"i*86-*-cygwin*"] \
28 && ![istarget
"i*86-*-mingw32*"] \
29 && ![istarget
"x86_64-*-mingw*"] } {
30 set target_xfail
"yes"
35 if {![info exists WINDRES
]} then {
39 if {[which $WINDRES
] == 0} then {
43 set wr
"$WINDRES --include-dir $srcdir/$subdir"
45 if [file
exists "$srcdir/../../winsup/w32api/include"] {
46 set wr
"$wr --include-dir $srcdir/../../winsup/w32api/include"
49 send_log
"\nWarning: Assuming windres can find the win32 headers\n\n"
52 set res_list
[lsort
[glob
-nocomplain $srcdir
/$subdir
/*.rc
]]
54 proc oneline
{ file
} {
56 if { [gets $file line
] == -1 } {
59 if [regexp
"^ \[0-9a-z\]\[0-9a-z\]* " $line] {
65 foreach res $res_list
{
66 set sroot
[file rootname $res
]
67 set broot
[file tail $sroot
]
71 while { [gets $rc line
] != -1 } {
72 if ![regexp
"^(//|/\*|#)" $line] {
75 if [regexp
"\[xp\]fail *(\[^ \]*)" $line junk sys] {
81 if { "$broot" != "bmpalign" && "$target_xfail" == "yes" } {
85 verbose
"$wr -J rc -O res $res tmpdir/$broot.res" 1
86 catch
"exec $wr -J rc -O res $res tmpdir/$broot.res" err
88 if ![string match
"" $err] then {
91 if [string match
"*windows.h: No such file*" $err] then {
92 unsupported
"windres/$broot (parse)"
94 fail
"windres/$broot (parse)"
98 pass
"windres/$broot (parse)"
101 while { [gets $rc line
] != -1 } {
102 if ![regexp
"^(//|/\*|#)" $line] {
105 if [regexp
"parse-only" $line] {
106 file
delete "tmpdir/$broot.res"
110 if [regexp
"\[xc\]fail *(\[^ \]*)" $line junk sys] {
119 if { "$broot" != "bmpalign" && "$target_xfail" == "yes" } {
123 verbose
"$OBJDUMP -b binary -s tmpdir/$broot.res > tmpdir/$broot.dump" 1
124 catch
"exec $OBJDUMP -b binary -s tmpdir/$broot.res > tmpdir/$broot.dump" err
126 if ![string match
"" $err] then {
129 fail
"windres/$broot (compare)"
133 set pat
[open
"$sroot.rsd"]
134 set out
[open
"tmpdir/$broot.dump"]
137 while { ![string match $patline
""] } {
138 set patline
[oneline $pat
]
139 set outline
[oneline $out
]
141 if ![string match $patline $outline
] {
142 send_log
"< $patline\n"
143 send_log
"> $outline\n"
144 fail
"windres/$broot (compare)"
150 pass
"windres/$broot (compare)"
151 file
delete "tmpdir/$broot.res"
152 file
delete "tmpdir/$broot.dump"