Commit 4daec079 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

winmm: Remove a failing test that is driver-specific.

parent 1cf567ec
......@@ -382,12 +382,6 @@ static void mixer_test_deviceA(int device)
ok(rc==MMSYSERR_INVALFLAG,
"mixerOpen: MMSYSERR_INVALFLAG expected, got %s\n", mmsys_error(rc));
/* Shouldn't open without a valid HWND */
rc=mixerOpen(&mix, device, 0, 0, CALLBACK_WINDOW);
ok(rc==MMSYSERR_INVALPARAM,
"mixerOpen: MMSYSERR_INVALPARAM expected, got %s\n", mmsys_error(rc));
for (d=0;d<capsA.cDestinations;d++) {
MIXERLINEA mixerlineA;
mixerlineA.cbStruct = 0;
......@@ -775,11 +769,6 @@ static void mixer_test_deviceW(int device)
ok(rc==MMSYSERR_INVALFLAG,
"mixerOpen: MMSYSERR_INVALFLAG expected, got %s\n", mmsys_error(rc));
/* Shouldn't open without a valid HWND */
rc=mixerOpen(&mix, device, 0, 0, CALLBACK_WINDOW);
ok(rc==MMSYSERR_INVALPARAM,
"mixerOpen: MMSYSERR_INVALPARAM expected, got %s\n", mmsys_error(rc));
for (d=0;d<capsW.cDestinations;d++) {
MIXERLINEW mixerlineW;
mixerlineW.cbStruct = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment