mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ole32/tests: win64 sets the lsb of the final DWORD in the ole private data header.
This commit is contained in:
parent
f9d48e7ba0
commit
d18875f306
1 changed files with 6 additions and 1 deletions
|
@ -714,7 +714,12 @@ static void test_cf_dataobject(IDataObject *data)
|
|||
ok(priv->res2 == 1, "got %08x\n", priv->res2);
|
||||
ok(priv->count == count, "got %08x expected %08x\n", priv->count, count);
|
||||
ok(priv->res3[0] == 0, "got %08x\n", priv->res3[0]);
|
||||
ok(priv->res3[1] == 0, "got %08x\n", priv->res3[1]);
|
||||
|
||||
/* win64 sets the lsb */
|
||||
if(sizeof(fmt_ptr->fmt.ptd) == 8)
|
||||
todo_wine ok(priv->res3[1] == 1, "got %08x\n", priv->res3[1]);
|
||||
else
|
||||
ok(priv->res3[1] == 0, "got %08x\n", priv->res3[1]);
|
||||
|
||||
GlobalUnlock(h);
|
||||
IEnumFORMATETC_Release(enum_fmt);
|
||||
|
|
Loading…
Reference in a new issue