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
87b41b73
Commit
87b41b73
authored
Oct 24, 2017
by
Zebediah Figura
Committed by
Alexandre Julliard
Oct 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat/tests: Skip MFTRegister() tests if permissions are too low.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9ce8592b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
mfplat.c
dlls/mfplat/tests/mfplat.c
+5
-2
No files found.
dlls/mfplat/tests/mfplat.c
View file @
87b41b73
...
...
@@ -73,9 +73,12 @@ static void test_register(void)
HRESULT
ret
;
ret
=
MFTRegister
(
DUMMY_CLSID
,
MFT_CATEGORY_OTHER
,
name
,
0
,
1
,
input
,
1
,
output
,
NULL
);
ok
(
ret
==
S_OK
,
"Failed to register dummy filter: %x
\n
"
,
ret
);
if
(
FAILED
(
ret
))
if
(
ret
==
E_ACCESSDENIED
)
{
win_skip
(
"Not enough permissions to register a filter
\n
"
);
return
;
}
ok
(
ret
==
S_OK
,
"Failed to register dummy filter: %x
\n
"
,
ret
);
if
(
0
)
{
...
...
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