Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9d0b69d1
Commit
9d0b69d1
authored
Nov 24, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Nov 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Remove test that crashes on systems with IE7.
parent
958596b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
advpack.c
dlls/advpack/tests/advpack.c
+8
-4
No files found.
dlls/advpack/tests/advpack.c
View file @
9d0b69d1
...
...
@@ -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'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment