jscript: Fixed jscript tests on some broken versions.

This commit is contained in:
Jacek Caban 2012-01-12 13:48:00 +01:00 committed by Alexandre Julliard
parent afcb9a0130
commit 5561ee635c
1 changed files with 1 additions and 1 deletions

View File

@ -644,7 +644,7 @@ static void test_aggregation(void)
&IID_IUnknown, (void**)&unk);
ok(hres == CLASS_E_NOAGGREGATION || broken(E_INVALIDARG) /* win2k */,
"CoCreateInstance failed: %08x, expected CLASS_E_NOAGGREGATION\n", hres);
ok(!unk, "unk = %p\n", unk);
ok(!unk || broken(unk != NULL), "unk = %p\n", unk);
}
static BOOL check_jscript(void)