Skip test that crashes on W2K/WinXP/W2K.
This commit is contained in:
parent
4f82e547d7
commit
5b325a6d15
|
@ -88,11 +88,14 @@ static void test_StrRetToStringNW(void)
|
||||||
ok(ret == TRUE && !strcmpW(buff, szTestW),
|
ok(ret == TRUE && !strcmpW(buff, szTestW),
|
||||||
"STRRET_OFFSET: dup failed, ret=%d\n", ret);
|
"STRRET_OFFSET: dup failed, ret=%d\n", ret);
|
||||||
|
|
||||||
|
/* The next test crashes on W2K, WinXP and W2K3, so we don't test. */
|
||||||
|
#if 0
|
||||||
/* Invalid dest - should return FALSE, except NT4 does not, so we don't check. */
|
/* Invalid dest - should return FALSE, except NT4 does not, so we don't check. */
|
||||||
strret.uType = STRRET_WSTR;
|
strret.uType = STRRET_WSTR;
|
||||||
strret.u.pOleStr = CoDupStrW("Test");
|
strret.u.pOleStr = CoDupStrW("Test");
|
||||||
pStrRetToStrNAW(NULL, sizeof(buff)/sizeof(WCHAR), &strret, NULL);
|
pStrRetToStrNAW(NULL, sizeof(buff)/sizeof(WCHAR), &strret, NULL);
|
||||||
trace("NULL dest: ret=%d\n", ret);
|
trace("NULL dest: ret=%d\n", ret);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST(string)
|
START_TEST(string)
|
||||||
|
|
Loading…
Reference in New Issue