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
7ac173fb
Commit
7ac173fb
authored
Jan 05, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jan 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xactengine3_7/tests: Skip tests when XACTEngine Initialization fails.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54151
parent
b3ab1f8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
xact3.c
dlls/xactengine3_7/tests/xact3.c
+7
-1
No files found.
dlls/xactengine3_7/tests/xact3.c
View file @
7ac173fb
...
...
@@ -206,7 +206,13 @@ static void test_notifications(void)
params
.
fnNotificationCallback
=
notification_cb
;
hr
=
IXACT3Engine_Initialize
(
engine
,
&
params
);
ok
(
hr
==
S_OK
,
"Cannot initialize engine, hr %#lx
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
broken
(
hr
==
XAUDIO2_E_INVALID_CALL
),
"Cannot initialize engine, hr %#lx
\n
"
,
hr
);
if
(
FAILED
(
hr
))
{
win_skip
(
"Unable to Initialize XACT. No speakers attached?
\n
"
);
IXACT3Engine_Release
(
engine
);
return
;
}
notification_desc
.
type
=
0
;
notification_desc
.
flags
=
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