Commit 91ac4b55 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

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

with embedded NULLs.
parent e239953e
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment