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
b883b557
Commit
b883b557
authored
Sep 21, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sti/tests: Skip some tests if not allowed to register our test application.
parent
33ed6393
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
sti.c
dlls/sti/tests/sti.c
+5
-2
No files found.
dlls/sti/tests/sti.c
View file @
b883b557
...
...
@@ -244,12 +244,15 @@ static void test_launch_app_registry(void)
if
(
SUCCEEDED
(
hr
))
{
hr
=
IStillImage_RegisterLaunchApplication
(
pStiW
,
appName
,
appName
);
ok
(
SUCCEEDED
(
hr
),
"could not register launch application, error 0x%X
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
if
(
hr
==
E_ACCESSDENIED
)
skip
(
"Not authorized to register a launch application
\n
"
);
else
if
(
SUCCEEDED
(
hr
))
{
hr
=
IStillImage_UnregisterLaunchApplication
(
pStiW
,
appName
);
ok
(
SUCCEEDED
(
hr
),
"could not unregister launch application, error 0x%X
\n
"
,
hr
);
}
else
ok
(
0
,
"could not register launch application, error 0x%X
\n
"
,
hr
);
IStillImage_Release
(
pStiW
);
}
else
...
...
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