Alexandre Julliard : winetest: Treat all dll load errors as a missing dll case.

Alexandre Julliard julliard at winehq.org
Mon Feb 9 10:52:08 CST 2009


Module: tools
Branch: master
Commit: c6ae8b593661931cd7ddbc05f401dd3d6a101846
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=c6ae8b593661931cd7ddbc05f401dd3d6a101846

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Sun Feb  8 20:06:07 2009 +0100

winetest: Treat all dll load errors as a missing dll case.

---

 winetest/dissect |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/winetest/dissect b/winetest/dissect
index 5ef467c..d6daf39 100755
--- a/winetest/dissect
+++ b/winetest/dissect
@@ -210,10 +210,11 @@ while ($_ = <IN>) {
     chomp;
     s/\r+$//;
     last if (!/^\s+([^ =]+)=(.*)\r?$/);
-    $dllinfo{$1} = { version => $2 };
-    if ($2 eq "dll is missing" || $2 eq "load error 1157")
+    my $module = $1;
+    $dllinfo{$module} = { version => $2 };
+    if ($2 eq "dll is missing" || $2 =~ /^load error/)
     {
-        print SUM "- $1 - missing - - - - -\n";
+        print SUM "- $module - missing - - - - -\n";
     }
 }
 




More information about the wine-cvs mailing list