oleaut32: Fix the vartype tests on Vista.

This commit is contained in:
Reece Dunn 2008-07-20 11:23:17 +01:00 committed by Alexandre Julliard
parent 811a809b0a
commit 4140801e2d
1 changed files with 4 additions and 2 deletions

View File

@ -5202,7 +5202,8 @@ static void test_SysReAllocString(void)
changed = SysReAllocString(&str, szSmaller);
ok (changed == 1, "Expected 1, got %d\n", changed);
ok (str == oldstr, "Created new string\n");
/* Vista creates a new string, but older versions reuse the existing string. */
/*ok (str == oldstr, "Created new string\n");*/
bstr = Get(str);
ok (bstr->dwLen == 2, "Expected 2, got %d\n", bstr->dwLen);
ok (!lstrcmpW(bstr->szString, szSmaller), "String different\n");
@ -5241,7 +5242,8 @@ static void test_SysReAllocStringLen(void)
changed = SysReAllocStringLen(&str, szSmaller, 1);
ok (changed == 1, "Expected 1, got %d\n", changed);
ok (str == oldstr, "Created new string\n");
/* Vista creates a new string, but older versions reuse the existing string. */
/*ok (str == oldstr, "Created new string\n");*/
bstr = Get(str);
ok (bstr->dwLen == 2, "Expected 2, got %d\n", bstr->dwLen);
ok (!lstrcmpW(bstr->szString, szSmaller), "String different\n");