On 11/07/2010 04:06 PM, David Hedberg wrote:
> - ok(hr == S_OK, "got (0x%08x)\n", hr);
> + ok(hr == S_OK || hr == E_FAIL /* Win7 */, "got (0x%08x)\n", hr);
This can't be correct. It either works or it fails. Can't be both at the
same time. You should look into why it's failing on Win7 and correct the
test so it succeeds.
Vitaliy