Commit 9d0b69d1 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

advpack: Remove test that crashes on systems with IE7.

parent 958596b7
...@@ -434,10 +434,14 @@ static void setperusersecvalues_test(void) ...@@ -434,10 +434,14 @@ static void setperusersecvalues_test(void)
peruser.bRollback = FALSE; peruser.bRollback = FALSE;
/* try a NULL pPerUser */ /* try a NULL pPerUser */
hr = pSetPerUserSecValues(NULL); if (0)
todo_wine {
ok(hr == S_OK, "Expected S_OK, got %d\n", hr); /* This crashes on systems with IE7 */
ok(!OPEN_GUID_KEY(), "Expected guid key to not exist\n"); hr = pSetPerUserSecValues(NULL);
todo_wine
ok(hr == S_OK, "Expected S_OK, got %d\n", hr);
ok(!OPEN_GUID_KEY(), "Expected guid key to not exist\n");
}
/* at the very least, szGUID must be valid */ /* at the very least, szGUID must be valid */
peruser.szGUID[0] = '\0'; peruser.szGUID[0] = '\0';
......
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