I got the test for failure on NT wrong in my last patch. The function

returns 0 on error and sets last error to ERROR_INVALID_FLAGS.
This commit is contained in:
Robert Reif 2004-06-03 23:19:27 +00:00 committed by Alexandre Julliard
parent 31f6cf32b8
commit 55b57417e1
1 changed files with 2 additions and 2 deletions

View File

@ -1469,7 +1469,7 @@ static void test_FoldStringA(void)
SetLastError(0);
ret = pFoldStringA(MAP_EXPAND_LIGATURES, ligatures_src, -1, dst, 256);
/* NT 4.0 doesnt support MAP_EXPAND_LIGATURES */
if (ret != ERROR_INVALID_FLAGS) {
if (!(ret == 0 && GetLastError() == ERROR_INVALID_FLAGS)) {
EXPECT_LEN(sizeof(ligatures_dst)); EXPECT_VALID;
ok(strcmp(dst, ligatures_dst) == 0,
"MAP_EXPAND_LIGATURES: Expected '%s', got '%s'\n", ligatures_dst, dst);
@ -1856,7 +1856,7 @@ static void test_FoldStringW(void)
SetLastError(0);
ret = pFoldStringW(MAP_EXPAND_LIGATURES, ligatures_src, -1, dst, 256);
/* NT 4.0 doesnt support MAP_EXPAND_LIGATURES */
if (ret != ERROR_INVALID_FLAGS) {
if (!(ret == 0 && GetLastError() == ERROR_INVALID_FLAGS)) {
EXPECT_LEN(sizeof(ligatures_dst)/sizeof(ligatures_dst[0])); EXPECT_VALID;
ok(!memcmp(dst, ligatures_dst, sizeof(ligatures_dst)),
"MAP_EXPAND_LIGATURES: Expanded incorrectly\n");