ole32/tests: win9x, winme and nt4 ignore the target device.

This commit is contained in:
Huw Davies 2009-04-21 16:50:58 +01:00 committed by Alexandre Julliard
parent 57d555c796
commit 508d6db8e2

View file

@ -1136,7 +1136,10 @@ static void test_flushed_getdata(void)
InitFormatEtc(fmt, cf_another, 0xffff);
hr = IDataObject_GetData(get, &fmt, &med);
ok(hr == DV_E_FORMATETC, "got %08x\n", hr);
ok(hr == DV_E_FORMATETC ||
broken(hr == S_OK), /* win9x, winme & nt4 */
"got %08x\n", hr);
if(hr == S_OK) ReleaseStgMedium(&med);
InitFormatEtc(fmt, cf_another, 0xffff);
memset(&dm, 0, sizeof(dm));