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
b4874a89
Commit
b4874a89
authored
Nov 11, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Nov 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: Fix some test failures on Win9x and WinMe.
parent
e7da5846
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
automation.c
dlls/msi/tests/automation.c
+10
-1
No files found.
dlls/msi/tests/automation.c
View file @
b4874a89
...
...
@@ -1816,9 +1816,18 @@ static void test_Installer_RegistryValue(void)
HKEY
curr_user
=
(
HKEY
)
1
;
HRESULT
hr
;
BOOL
bRet
;
LONG
lRet
;
/* Delete keys */
if
(
!
RegOpenKeyW
(
HKEY_CURRENT_USER
,
szKey
,
&
hkey
))
delete_key
(
hkey
);
SetLastError
(
0xdeadbeef
);
lRet
=
RegOpenKeyW
(
HKEY_CURRENT_USER
,
szKey
,
&
hkey
);
if
(
!
lRet
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"Needed W-functions are not implemented
\n
"
);
return
;
}
if
(
!
lRet
)
delete_key
(
hkey
);
/* Does our key exist? Shouldn't; check with all three possible value parameter types */
hr
=
Installer_RegistryValueE
(
curr_user
,
szKey
,
&
bRet
);
...
...
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