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
8aa205fb
Commit
8aa205fb
authored
Aug 30, 2013
by
George Stephanos
Committed by
Alexandre Julliard
Sep 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32/tests: HKCR mask tests fix for WinNT.
parent
478db5bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
registry.c
dlls/advapi32/tests/registry.c
+4
-2
No files found.
dlls/advapi32/tests/registry.c
View file @
8aa205fb
...
...
@@ -2130,7 +2130,6 @@ static void test_classesroot(void)
todo_wine
ok
(
res
==
ERROR_SUCCESS
||
broken
(
res
==
ERROR_FILE_NOT_FOUND
/* WinNT */
),
"test key not found in hkcr: %d
\n
"
,
res
);
todo_wine
ok
(
IS_HKCR
(
hkcr
),
"hkcr mask not set in %p
\n
"
,
hkcr
);
if
(
res
)
{
skip
(
"HKCR key merging not supported
\n
"
);
...
...
@@ -2139,6 +2138,8 @@ static void test_classesroot(void)
return
;
}
todo_wine
ok
(
IS_HKCR
(
hkcr
),
"hkcr mask not set in %p
\n
"
,
hkcr
);
/* set a value in user's classes */
res
=
RegSetValueExA
(
hkey
,
"val1"
,
0
,
REG_SZ
,
(
const
BYTE
*
)
"user"
,
sizeof
(
"user"
));
ok
(
res
==
ERROR_SUCCESS
,
"RegSetValueExA failed: %d, GLE=%x
\n
"
,
res
,
GetLastError
());
...
...
@@ -2583,7 +2584,8 @@ static void test_classesroot_mask(void)
res
=
RegOpenKeyA
(
HKEY_CLASSES_ROOT
,
"CLSID"
,
&
hkey
);
ok
(
res
==
ERROR_SUCCESS
,
"RegOpenKeyA failed: %d
\n
"
,
res
);
todo_wine
ok
(
IS_HKCR
(
hkey
),
"hkcr mask not set in %p
\n
"
,
hkey
);
todo_wine
ok
(
IS_HKCR
(
hkey
)
||
broken
(
!
IS_HKCR
(
hkey
))
/* WinNT */
,
"hkcr mask not set in %p
\n
"
,
hkey
);
RegCloseKey
(
hkey
);
res
=
RegOpenKeyA
(
HKEY_CURRENT_USER
,
"Software"
,
&
hkey
);
...
...
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