Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
ff7511cc
Commit
ff7511cc
authored
Oct 29, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm/tests: Skip tests for MMSYSERR_NODRIVER too.
parent
9a263e58
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
midi.c
dlls/winmm/tests/midi.c
+2
-2
No files found.
dlls/winmm/tests/midi.c
View file @
ff7511cc
...
...
@@ -282,7 +282,7 @@ static void test_midiOut_device(UINT udev, HWND hwnd)
rc
=
midiOutOpen
(
&
hm
,
udev
,
(
DWORD_PTR
)
hwnd
,
(
DWORD_PTR
)
MYCBINST
,
CALLBACK_WINDOW
);
else
rc
=
midiOutOpen
(
&
hm
,
udev
,
(
DWORD_PTR
)
callback_func
,
(
DWORD_PTR
)
MYCBINST
,
CALLBACK_FUNCTION
);
if
(
rc
==
MMSYSERR_NOTSUPPORTED
)
if
(
rc
==
MMSYSERR_NOTSUPPORTED
||
rc
==
MMSYSERR_NODRIVER
)
{
skip
(
"MIDI out not supported
\n
"
);
return
;
...
...
@@ -481,7 +481,7 @@ static void test_midiStream(UINT udev, HWND hwnd)
rc
=
midiStreamOpen
(
&
hm
,
&
udev
,
1
,
(
DWORD_PTR
)
hwnd
,
(
DWORD_PTR
)
MYCBINST
,
CALLBACK_WINDOW
);
else
rc
=
midiStreamOpen
(
&
hm
,
&
udev
,
1
,
(
DWORD_PTR
)
callback_func
,
(
DWORD_PTR
)
MYCBINST
,
CALLBACK_FUNCTION
);
if
(
rc
==
MMSYSERR_NOTSUPPORTED
)
if
(
rc
==
MMSYSERR_NOTSUPPORTED
||
rc
==
MMSYSERR_NODRIVER
)
{
skip
(
"MIDI stream not supported
\n
"
);
return
;
...
...
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