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
d7199a48
Commit
d7199a48
authored
Apr 07, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Apr 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Add a few more tests for SetPerUserSecValues.
parent
ac6d4f7e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
advpack.c
dlls/advpack/tests/advpack.c
+18
-1
No files found.
dlls/advpack/tests/advpack.c
View file @
d7199a48
...
...
@@ -425,7 +425,6 @@ static void setperusersecvalues_test()
HRESULT
hr
;
HKEY
guid
;
lstrcpy
(
peruser
.
szGUID
,
"guid"
);
lstrcpy
(
peruser
.
szDispName
,
"displayname"
);
lstrcpy
(
peruser
.
szLocale
,
"locale"
);
lstrcpy
(
peruser
.
szStub
,
"stub"
);
...
...
@@ -434,7 +433,25 @@ static void setperusersecvalues_test()
peruser
.
dwIsInstalled
=
1
;
peruser
.
bRollback
=
FALSE
;
/* try a NULL pPerUser */
hr
=
pSetPerUserSecValues
(
NULL
);
todo_wine
{
ok
(
hr
==
S_OK
,
"Expected S_OK, got %ld
\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'
;
hr
=
pSetPerUserSecValues
(
&
peruser
);
todo_wine
{
ok
(
hr
==
S_OK
,
"Expected S_OK, got %ld
\n
"
,
hr
);
}
ok
(
!
OPEN_GUID_KEY
(),
"Expected guid key to not exist
\n
"
);
/* set initial values */
lstrcpy
(
peruser
.
szGUID
,
"guid"
);
hr
=
pSetPerUserSecValues
(
&
peruser
);
todo_wine
{
...
...
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