Commit cd22e8c2 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Skip tests if we can't register ActiveX object.

parent 0473a790
......@@ -1143,11 +1143,12 @@ START_TEST(activex)
CoInitialize(NULL);
if(check_jscript()) {
register_activex();
test_ActiveXObject();
init_registry(FALSE);
if(register_activex()) {
test_ActiveXObject();
init_registry(FALSE);
}else {
skip("Could not register ActiveX object\n");
}
}else {
win_skip("Broken engine, probably too old\n");
}
......
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