msvcrt: Fix _ismbblead test: Make it pass on windows

Vitaliy Margolen wine-patch at kievinfo.com
Sat Oct 1 12:58:45 CDT 2005


This test clearly fails on all windows versions.

Vitaliy Margolen

changelog:
  msvcrt:
    Fix _ismbblead test: Make it pass on windows
-------------- next part --------------
Index: dlls/msvcrt/tests/string.c
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/tests/string.c,v
retrieving revision 1.4
diff -u -p -r1.4 string.c
--- dlls/msvcrt/tests/string.c	6 Sep 2005 11:41:48 -0000	1.4
+++ dlls/msvcrt/tests/string.c	1 Oct 2005 17:56:59 -0000
@@ -79,7 +79,7 @@ void test_ismbblead()
     unsigned int s = '\354';
 
     _setmbcp(936);
-    todo_wine ok(_ismbblead(s) == 4, "got result %d\n", _ismbblead(s));
+    todo_wine ok(_ismbblead(s) == 1, "got result %d\n", _ismbblead(s));
     _setmbcp(1252);
 }
 


More information about the wine-patches mailing list