mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ole32/tests: win9x, winme and nt4 ignore the target device.
This commit is contained in:
parent
57d555c796
commit
508d6db8e2
1 changed files with 4 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue