Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e2a3b4b4
Commit
e2a3b4b4
authored
Mar 13, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Mar 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32/tests: Add some skips.
parent
42d3bd71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
registry.c
dlls/advapi32/tests/registry.c
+8
-3
No files found.
dlls/advapi32/tests/registry.c
View file @
e2a3b4b4
...
...
@@ -2064,8 +2064,13 @@ static void test_classesroot(void)
delete_key
(
hkey
);
RegCloseKey
(
hkey
);
}
if
(
RegCreateKeyExA
(
HKEY_CURRENT_USER
,
"Software
\\
Classes
\\
WineTestCls"
,
0
,
NULL
,
0
,
KEY_QUERY_VALUE
|
KEY_SET_VALUE
,
NULL
,
&
hkey
,
NULL
))
return
;
res
=
RegCreateKeyExA
(
HKEY_CURRENT_USER
,
"Software
\\
Classes
\\
WineTestCls"
,
0
,
NULL
,
0
,
KEY_QUERY_VALUE
|
KEY_SET_VALUE
,
NULL
,
&
hkey
,
NULL
);
if
(
res
==
ERROR_ACCESS_DENIED
)
{
skip
(
"not enough privileges to add a user class
\n
"
);
return
;
}
/* try to open that key in hkcr */
res
=
RegOpenKeyExA
(
HKEY_CLASSES_ROOT
,
"WineTestCls"
,
0
,
...
...
@@ -2075,7 +2080,7 @@ static void test_classesroot(void)
"test key not found in hkcr: %d
\n
"
,
res
);
if
(
res
)
{
trace
(
"HKCR key merging not supported
\n
"
);
skip
(
"HKCR key merging not supported
\n
"
);
delete_key
(
hkey
);
RegCloseKey
(
hkey
);
return
;
...
...
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