winmm: Remove a failing test that is driver-specific.
This commit is contained in:
parent
1cf567ecc9
commit
4daec079c1
|
@ -382,12 +382,6 @@ static void mixer_test_deviceA(int device)
|
||||||
ok(rc==MMSYSERR_INVALFLAG,
|
ok(rc==MMSYSERR_INVALFLAG,
|
||||||
"mixerOpen: MMSYSERR_INVALFLAG expected, got %s\n", mmsys_error(rc));
|
"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++) {
|
for (d=0;d<capsA.cDestinations;d++) {
|
||||||
MIXERLINEA mixerlineA;
|
MIXERLINEA mixerlineA;
|
||||||
mixerlineA.cbStruct = 0;
|
mixerlineA.cbStruct = 0;
|
||||||
|
@ -775,11 +769,6 @@ static void mixer_test_deviceW(int device)
|
||||||
ok(rc==MMSYSERR_INVALFLAG,
|
ok(rc==MMSYSERR_INVALFLAG,
|
||||||
"mixerOpen: MMSYSERR_INVALFLAG expected, got %s\n", mmsys_error(rc));
|
"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++) {
|
for (d=0;d<capsW.cDestinations;d++) {
|
||||||
MIXERLINEW mixerlineW;
|
MIXERLINEW mixerlineW;
|
||||||
mixerlineW.cbStruct = 0;
|
mixerlineW.cbStruct = 0;
|
||||||
|
|
Loading…
Reference in New Issue