Paul Vriens : advpack: Remove test that crashes on systems with IE7.
Module: wine Branch: master Commit: 9d0b69d130b1a6d2db984caab02f1fb1b742a287 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9d0b69d130b1a6d2db984caab0... Author: Paul Vriens <paul.vriens.wine(a)gmail.com> Date: Fri Nov 24 10:12:58 2006 +0100 advpack: Remove test that crashes on systems with IE7. --- dlls/advpack/tests/advpack.c | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/dlls/advpack/tests/advpack.c b/dlls/advpack/tests/advpack.c index ff812f3..be3fb46 100644 --- a/dlls/advpack/tests/advpack.c +++ b/dlls/advpack/tests/advpack.c @@ -434,10 +434,14 @@ static void setperusersecvalues_test(voi 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';
participants (1)
-
Alexandre Julliard