advpack: Remove test that crashes on systems with IE7.

oldstable
Paul Vriens 2006-11-24 10:12:58 +01:00 committed by Alexandre Julliard
parent 958596b70a
commit 9d0b69d130
1 changed files with 8 additions and 4 deletions

View File

@ -434,10 +434,14 @@ static void setperusersecvalues_test(void)
peruser.bRollback = FALSE;
/* try a NULL pPerUser */
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");
if (0)
{
/* This crashes on systems with IE7 */
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 */
peruser.szGUID[0] = '\0';