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
795087bc
Commit
795087bc
authored
Feb 09, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Feb 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack/tests: Show errors in hex.
parent
806867fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
advpack.c
dlls/advpack/tests/advpack.c
+3
-3
No files found.
dlls/advpack/tests/advpack.c
View file @
795087bc
...
...
@@ -521,7 +521,7 @@ static void setperusersecvalues_test(void)
/* set initial values */
lstrcpy
(
peruser
.
szGUID
,
"guid"
);
hr
=
pSetPerUserSecValues
(
&
peruser
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %
d
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %
08x
\n
"
,
hr
);
ok
(
OPEN_GUID_KEY
(),
"Expected guid key to exist
\n
"
);
ok
(
check_reg_str
(
guid
,
NULL
,
"displayname"
),
"Expected displayname
\n
"
);
ok
(
check_reg_str
(
guid
,
"ComponentID"
,
"compid"
),
"Expected compid
\n
"
);
...
...
@@ -538,7 +538,7 @@ static void setperusersecvalues_test(void)
/* raise the version, but bRollback is FALSE, so vals not saved */
lstrcpy
(
peruser
.
szVersion
,
"2,1,1,1"
);
hr
=
pSetPerUserSecValues
(
&
peruser
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %
d
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %
08x
\n
"
,
hr
);
ok
(
check_reg_str
(
guid
,
NULL
,
"displayname"
),
"Expected displayname
\n
"
);
ok
(
check_reg_str
(
guid
,
"ComponentID"
,
"compid"
),
"Expected compid
\n
"
);
ok
(
check_reg_str
(
guid
,
"Locale"
,
"locale"
),
"Expected locale
\n
"
);
...
...
@@ -555,7 +555,7 @@ static void setperusersecvalues_test(void)
peruser
.
bRollback
=
TRUE
;
lstrcpy
(
peruser
.
szVersion
,
"3,1,1,1"
);
hr
=
pSetPerUserSecValues
(
&
peruser
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %
d
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %
08x
\n
"
,
hr
);
ok
(
check_reg_str
(
guid
,
NULL
,
"displayname"
),
"Expected displayname
\n
"
);
ok
(
check_reg_str
(
guid
,
"ComponentID"
,
"compid"
),
"Expected compid
\n
"
);
ok
(
check_reg_str
(
guid
,
"Locale"
,
"locale"
),
"Expected locale
\n
"
);
...
...
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