Juan Lang : kernel: Change failing to test to show it doesn' t have anything to do

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jun 23 06:43:23 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 91ac4b553475eea222f46517f46c07562b30755f
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=91ac4b553475eea222f46517f46c07562b30755f

Author: Juan Lang <juan_lang at yahoo.com>
Date:   Fri Jun 23 00:14:05 2006 -0700

kernel: Change failing to test to show it doesn't have anything to do
with embedded NULLs.

---

 dlls/kernel/tests/locale.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/kernel/tests/locale.c b/dlls/kernel/tests/locale.c
index d7c0eee..565f998 100644
--- a/dlls/kernel/tests/locale.c
+++ b/dlls/kernel/tests/locale.c
@@ -941,8 +941,8 @@ static void test_CompareStringA(void)
     ret = CompareStringA(lcid, 0, "a\0b", 4, "a", 2);
     ok(ret == 3, "a\\0b vs a expected 3, got %d\n", ret);
 
-    ret = CompareStringA(lcid, 0, "\1\0\2", 4, "\1\0\1", 4);
-    todo_wine ok(ret != 2, "\\1\\0\\2 vs \\1\\0\\1 expected unequal\n");
+    ret = CompareStringA(lcid, 0, "\2", 2, "\1", 2);
+    todo_wine ok(ret != 2, "\\2 vs \\1 expected unequal\n");
 }
 
 static void test_LCMapStringA(void)




More information about the wine-cvs mailing list