mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ole32/tests: win9x and winme don't enumerate duplicated cfFormats.
This commit is contained in:
parent
d18875f306
commit
1556d831c8
1 changed files with 3 additions and 1 deletions
|
@ -584,7 +584,9 @@ static void test_enum_fmtetc(IDataObject *src)
|
|||
if(src)
|
||||
{
|
||||
hr = IEnumFORMATETC_Next(src_enum, 1, &src_fmt, NULL);
|
||||
ok(hr == S_FALSE, "%d: got %08x\n", count, hr);
|
||||
ok(hr == S_FALSE ||
|
||||
broken(hr == S_OK && count == 5), /* win9x and winme don't enumerate duplicated cf's */
|
||||
"%d: got %08x\n", count, hr);
|
||||
IEnumFORMATETC_Release(src_enum);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue