[Tools] winetest: Strip the LF from the winetest URL. Fixes an HTML warning.

Francois Gouget fgouget at free.fr
Mon Mar 10 07:59:33 CDT 2008


---
 winetest/gather |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/winetest/gather b/winetest/gather
index bda1f95..c9e490a 100755
--- a/winetest/gather
+++ b/winetest/gather
@@ -97,7 +97,7 @@ foreach my $file (glob "$datadir/$build/*/summary.txt") {
         close TEST;
         next;
     }
-    if (($url = <TEST>) !~ s/^Archive: (.*)$/$1/) {
+    if (($url = <TEST>) !~ s/^Archive: (.*)\n$/$1/) {
         print "$file: wrong archive url: $_";
         close TEST;
         next;
-- 
1.5.4.1




More information about the wine-patches mailing list