mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
ole32/tests: Only skip the tests if we are on NT4 or below.
This commit is contained in:
parent
f75e4bf0de
commit
185ad65d12
1 changed files with 6 additions and 2 deletions
|
@ -1130,8 +1130,8 @@ static void test_data_cache(void)
|
|||
hr = IOleCache_Uncache(pOleCache, 0xdeadbeef);
|
||||
ok(hr == OLE_E_NOCONNECTION, "IOleCache_Uncache with invalid value should return OLE_E_NOCONNECTION instead of 0x%x\n", hr);
|
||||
|
||||
/* Both tests crash on NT4 and below */
|
||||
if (0)
|
||||
/* Both tests crash on NT4 and below. StgCreatePropSetStg is only available on w2k and above. */
|
||||
if (GetProcAddress(GetModuleHandleA("ole32.dll"), "StgCreatePropSetStg"))
|
||||
{
|
||||
hr = IOleCache_Cache(pOleCache, NULL, 0, &dwConnection);
|
||||
ok(hr == E_INVALIDARG, "IOleCache_Cache with NULL fmtetc should have returned E_INVALIDARG instead of 0x%08x\n", hr);
|
||||
|
@ -1139,6 +1139,10 @@ static void test_data_cache(void)
|
|||
hr = IOleCache_Cache(pOleCache, NULL, 0, NULL);
|
||||
ok(hr == E_INVALIDARG, "IOleCache_Cache with NULL pdwConnection should have returned E_INVALIDARG instead of 0x%08x\n", hr);
|
||||
}
|
||||
else
|
||||
{
|
||||
skip("tests with NULL parameters will crash on NT4 and below\n");
|
||||
}
|
||||
|
||||
for (fmtetc.cfFormat = CF_TEXT; fmtetc.cfFormat < CF_MAX; fmtetc.cfFormat++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue