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
3d33d8a9
Commit
3d33d8a9
authored
May 01, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Fix test failures on some VMs with limited user permissions.
parent
4fa8d3a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
compobj.c
dlls/ole32/tests/compobj.c
+6
-1
No files found.
dlls/ole32/tests/compobj.c
View file @
3d33d8a9
...
...
@@ -1964,7 +1964,12 @@ static void test_TreatAsClass(void)
ok
(
lr
==
ERROR_SUCCESS
,
"Couldn't open CLSID key
\n
"
);
lr
=
RegCreateKeyExA
(
clsidkey
,
deadbeefA
,
0
,
NULL
,
0
,
KEY_WRITE
,
NULL
,
&
deadbeefkey
,
NULL
);
ok
(
lr
==
ERROR_SUCCESS
,
"Couldn't create class key
\n
"
);
if
(
lr
)
{
win_skip
(
"CoGetTreatAsClass() tests will be skipped (failed to create a test key, error %d)
\n
"
,
GetLastError
());
RegCloseKey
(
clsidkey
);
return
;
}
hr
=
pCoTreatAsClass
(
&
deadbeef
,
&
deadbeef
);
ok
(
hr
==
REGDB_E_WRITEREGDB
,
"CoTreatAsClass gave wrong error: %08x
\n
"
,
hr
);
...
...
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