Module: tools Branch: master Commit: 67132b692e6bfa0e7aae484307482da540986f54 URL: http://source.winehq.org/git/tools.git/?a=commit;h=67132b692e6bfa0e7aae48430...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Mar 13 16:20:40 2009 +0100
winetest: Remove some old format compatibility code.
---
winetest/gather | 25 +------------------------ 1 files changed, 1 insertions(+), 24 deletions(-)
diff --git a/winetest/gather b/winetest/gather index eda9203..a596a78 100755 --- a/winetest/gather +++ b/winetest/gather @@ -122,16 +122,6 @@ foreach my $file (glob "$datadir/$build/*/summary.txt") { }
my $report = { group => $group}; - # Read the dll information if present - my $dllinfo = "$datadir/$build/$dir/dllinfo.txt"; - if (open DLLINFO, "<$dllinfo") { - while ($_ = <DLLINFO>) { - if (/^\s*([0-9a-zA-Z_.]+)=(dll is missing)\r?$/) { - $report->{dllmissing}->{$1} = 1; - } - } - close DLLINFO; - } $report->{tag} = @tag?"@tag":""; $report->{dir} = $dir; if (!open TEST, "<$file") { @@ -335,7 +325,6 @@ sub build_header_footer($) my $group = $report->{group};
if (!defined $msg) { - # If dllinfo.html exists we have html files if (-r "$datadir/$build/$report->{dir}/dllinfo.html") { $msg = <<"EOF"; $group->{name}<br><small> @@ -343,18 +332,10 @@ sub build_header_footer($) <a href="$report->{dir}/dllinfo.html">[info]</a> <a href="$report->{dir}/report.html">[file]</a></small> EOF - } - elsif (-r "$datadir/$build/$report->{dir}/version.html") { - $msg = <<"EOF"; - $group->{name}<br><small> - <a href="$report->{dir}/version.html">$report->{tag}</a></small> -EOF } else { $msg = <<"EOF"; $group->{name}<br><small> - <a href="$report->{dir}/version.txt">$report->{tag}</a><br> - <a href="$report->{dir}/dllinfo.txt">[info]</a> - <a href="$report->{dir}/report">[file]</a></small> + <a href="$report->{dir}/version.html">$report->{tag}</a></small> EOF } chop $msg; @@ -537,10 +518,6 @@ sub singletest($$$) { { $href = "$report->{dir}/$testname.html"; } - elsif (-r "$datadir/$build/$report->{dir}/$testname.txt") - { - $href = "$report->{dir}/$testname.txt"; - } else { $href="";