dlls/wininet/tests/http.c - fix for wininet:http test on 98, NT4, 2000 and XP

Jakob Eriksson jakov at vmlinux.org
Wed Mar 16 04:57:27 CST 2005


Test failed before on 98, NT4, 2000 and XP.

http://test.winehq.org/data/200503151000/


regards,
Jakob

-------------- next part --------------
Index: dlls/wininet/tests/http.c
===================================================================
RCS file: /home/wine/wine/dlls/wininet/tests/http.c,v
retrieving revision 1.18
diff -u -r1.18 http.c
--- dlls/wininet/tests/http.c	18 Jan 2005 11:43:40 -0000	1.18
+++ dlls/wininet/tests/http.c	16 Mar 2005 10:52:56 -0000
@@ -438,7 +438,9 @@
         "InternetTimeToSystemTimeW failed (%ld)\n", GetLastError() );
 
     ret = InternetTimeToSystemTimeW( string3, &time, 0 );
-    ok( !ret, "InternetTimeToSystemTimeW failed (%ld)\n", GetLastError() );
+    todo_wine {
+        ok( ret, "InternetTimeToSystemTimeW succeds on (%ld), string3='Fr'", GetLastError() );
+    }
 }
 
 START_TEST(http)


More information about the wine-patches mailing list