Commit 1556d831 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

ole32/tests: win9x and winme don't enumerate duplicated cfFormats.

parent d18875f3
...@@ -584,7 +584,9 @@ static void test_enum_fmtetc(IDataObject *src) ...@@ -584,7 +584,9 @@ static void test_enum_fmtetc(IDataObject *src)
if(src) if(src)
{ {
hr = IEnumFORMATETC_Next(src_enum, 1, &src_fmt, NULL); 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); IEnumFORMATETC_Release(src_enum);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment