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
1214dca4
Commit
1214dca4
authored
Dec 10, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: Fix some test failures on Wow64.
parent
9f182396
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
action.c
dlls/msi/tests/action.c
+6
-6
No files found.
dlls/msi/tests/action.c
View file @
1214dca4
...
...
@@ -2842,7 +2842,7 @@ currentuser:
RegCloseKey
(
hkey
);
machprod:
res
=
RegOpenKey
A
(
HKEY_CLASSES_ROOT
,
machprod
,
&
hkey
);
res
=
RegOpenKey
ExA
(
HKEY_CLASSES_ROOT
,
machprod
,
0
,
access
,
&
hkey
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
CHECK_DEL_REG_STR
(
hkey
,
"ProductName"
,
"MSITEST"
);
...
...
@@ -2856,7 +2856,7 @@ machprod:
CHECK_DEL_REG_DWORD
(
hkey
,
"InstanceType"
,
0
);
CHECK_DEL_REG_STR
(
hkey
,
"Clients"
,
":"
);
res
=
RegOpenKey
A
(
hkey
,
"SourceList"
,
&
sourcelist
);
res
=
RegOpenKey
ExA
(
hkey
,
"SourceList"
,
0
,
access
,
&
sourcelist
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
lstrcpyA
(
path
,
"n;1;"
);
...
...
@@ -2864,7 +2864,7 @@ machprod:
CHECK_DEL_REG_STR
(
sourcelist
,
"LastUsedSource"
,
path
);
CHECK_DEL_REG_STR
(
sourcelist
,
"PackageName"
,
"msitest.msi"
);
res
=
RegOpenKey
A
(
sourcelist
,
"Net"
,
&
net
);
res
=
RegOpenKey
ExA
(
sourcelist
,
"Net"
,
0
,
access
,
&
net
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
CHECK_DEL_REG_STR
(
net
,
"1"
,
temp
);
...
...
@@ -2872,7 +2872,7 @@ machprod:
RegDeleteKeyA
(
net
,
""
);
RegCloseKey
(
net
);
res
=
RegOpenKey
A
(
sourcelist
,
"Media"
,
&
media
);
res
=
RegOpenKey
ExA
(
sourcelist
,
"Media"
,
0
,
access
,
&
media
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
CHECK_DEL_REG_STR
(
media
,
"1"
,
"DISK1;"
);
...
...
@@ -2884,7 +2884,7 @@ machprod:
RegDeleteKeyA
(
hkey
,
""
);
RegCloseKey
(
hkey
);
res
=
RegOpenKey
A
(
HKEY_CLASSES_ROOT
,
machup
,
&
hkey
);
res
=
RegOpenKey
ExA
(
HKEY_CLASSES_ROOT
,
machup
,
0
,
access
,
&
hkey
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
CHECK_DEL_REG_STR
(
hkey
,
"84A88FD7F6998CE40A22FB59F6B9C2BB"
,
NULL
);
...
...
@@ -2989,7 +2989,7 @@ static void test_publish_features(void)
res
=
RegOpenKeyA
(
HKEY_CURRENT_USER
,
cupath
,
&
hkey
);
ok
(
res
==
ERROR_FILE_NOT_FOUND
,
"Expected ERROR_FILE_NOT_FOUND, got %d
\n
"
,
res
);
res
=
RegOpenKey
A
(
HKEY_LOCAL_MACHINE
,
classfeat
,
&
hkey
);
res
=
RegOpenKey
ExA
(
HKEY_LOCAL_MACHINE
,
classfeat
,
0
,
access
,
&
hkey
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
CHECK_REG_STR
(
hkey
,
"feature"
,
""
);
...
...
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