1 # Copyright 2001, 2003 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, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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-*-*"]} {
26 if {![istarget "i*86-*-*pe*"] \
27 && ![istarget "i*86-*-cygwin*"] \
28 && ![istarget "i*86-*-mingw32*"] } {
29 set target_xfail "yes"
34 if {![info exists WINDRES]} then {
38 if {[which $WINDRES] == 0} then {
42 set wr "$WINDRES --include-dir $srcdir/$subdir"
44 if [file exists "$srcdir/../../winsup/w32api/include"] {
45 set wr "$wr --include-dir $srcdir/../../winsup/w32api/include"
48 send_log "\nWarning: Assuming windres can find the win32 headers\n\n"
51 set res_list [lsort [glob -nocomplain $srcdir/$subdir/*.rc]]
53 proc oneline { file } {
55 if { [gets $file line] == -1 } {
58 if [regexp "^ \[0-9a-z\]\[0-9a-z\]* " $line] {
64 foreach res $res_list {
65 set sroot [file rootname $res]
66 set broot [file tail $sroot]
70 while { [gets $rc line] != -1 } {
71 if ![regexp "^(//|/\*|#)" $line] {
74 if [regexp "\[xp\]fail *(\[^ \]*)" $line junk sys] {
80 if { "$broot" != "bmpalign" && "$target_xfail" == "yes" } {
84 verbose "$wr -J rc -O res $res tmpdir/$broot.res" 1
85 catch "exec $wr -J rc -O res $res tmpdir/$broot.res" err
87 if ![string match "" $err] then {
90 fail "windres/$broot (parse)"
93 pass "windres/$broot (parse)"
96 while { [gets $rc line] != -1 } {
97 if ![regexp "^(//|/\*|#)" $line] {
100 if [regexp "parse-only" $line] {
101 file delete "tmpdir/$broot.res"
105 if [regexp "\[xc\]fail *(\[^ \]*)" $line junk sys] {
114 if { "$broot" != "bmpalign" && "$target_xfail" == "yes" } {
118 verbose "$OBJDUMP -b binary -s tmpdir/$broot.res > tmpdir/$broot.dump" 1
119 catch "exec $OBJDUMP -b binary -s tmpdir/$broot.res > tmpdir/$broot.dump" err
121 if ![string match "" $err] then {
124 fail "windres/$broot (compare)"
128 set pat [open "$sroot.rsd"]
129 set out [open "tmpdir/$broot.dump"]
132 while { ![string match $patline ""] } {
133 set patline [oneline $pat]
134 set outline [oneline $out]
136 if ![string match $patline $outline] {
137 send_log "< $patline\n";
138 send_log "> $outline\n";
139 fail "windres/$broot (compare)";
145 pass "windres/$broot (compare)"
146 file delete "tmpdir/$broot.res"
147 file delete "tmpdir/$broot.dump"