[Tools 11/12] winetest: Only append '.dll' if there is not already another extension.

Francois Gouget fgouget at free.fr
Fri Mar 14 11:26:28 CDT 2008


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

diff --git a/winetest/gather b/winetest/gather
index f4098ea..bf84b24 100755
--- a/winetest/gather
+++ b/winetest/gather
@@ -281,9 +281,10 @@ sub singletest($$$) {
         print OUT "      <td class=\"note\">$fail</td>\n";
     } elsif ($count eq "dll missing") {
         my ($dll, $subtest) = split(/:/, $testname);
+        $dll.=".dll" if ($dll !~ /\./);
         print OUT <<"EOF";
       <td class="skip_pass"><a
-        title="No tests run as $dll.dll is not present on this system"
+        title="No tests run as $dll is not present on this system"
         >n/a</a></td>
 EOF
     } elsif ($count eq "winetest crash") {
-- 
1.5.4.1




More information about the wine-patches mailing list