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
f78af0e0
Commit
f78af0e0
authored
Jun 30, 2011
by
Andrew Eikum
Committed by
Alexandre Julliard
Jul 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm/tests: Don't test MCI output if no output devices are available.
parent
e244222c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
mci.c
dlls/winmm/tests/mci.c
+6
-3
No files found.
dlls/winmm/tests/mci.c
View file @
f78af0e0
...
...
@@ -1271,9 +1271,12 @@ START_TEST(mci)
test_mciParser
(
hwnd
);
test_openCloseWAVE
(
hwnd
);
test_recordWAVE
(
hwnd
);
test_playWAVE
(
hwnd
);
test_asyncWAVE
(
hwnd
);
test_AutoOpenWAVE
(
hwnd
);
if
(
waveOutGetNumDevs
()){
test_playWAVE
(
hwnd
);
test_asyncWAVE
(
hwnd
);
test_AutoOpenWAVE
(
hwnd
);
}
else
skip
(
"No output devices available, skipping all output tests
\n
"
);
/* Win9X hangs when exiting with something still open. */
err
=
mciSendString
(
"close all"
,
NULL
,
0
,
hwnd
);
ok
(
!
err
,
"final close all returned %s
\n
"
,
dbg_mcierr
(
err
));
...
...
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