ddrawex/tests: Fix some test failures on W95.
This commit is contained in:
parent
2ba5581924
commit
53bd36ebe3
|
@ -58,6 +58,12 @@ static void RefCountTest(void)
|
|||
|
||||
IDirectDraw_AddRef(dd1);
|
||||
ref = get_ref((IUnknown *) dd1);
|
||||
if (ref == 1)
|
||||
{
|
||||
win_skip("Refcounting is broken\n");
|
||||
IDirectDraw_Release(dd1);
|
||||
return;
|
||||
}
|
||||
ok(ref == 2, "After AddRef the refcount is %u, expected 2\n", ref);
|
||||
IDirectDraw_Release(dd1);
|
||||
ref = get_ref((IUnknown *) dd1);
|
||||
|
|
Loading…
Reference in New Issue