Commit ace442f3 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

winmm/tests: Only test non-mapper devices in interactive mode.

Other devices might be less reliable, but we should generally expect WAVE_MAPPER to behave well. This also massively reduces test runtime, depending on how many devices are present.
parent b55a27a1
......@@ -1469,8 +1469,9 @@ static void wave_out_tests(void)
"waveOutOpen(%s): MMSYSERR_BADDEVICEID expected, got %s\n",
dev_name(ndev+1),mmsys_error(rc));
for (d=0;d<ndev;d++)
wave_out_test_device(d);
if(winetest_interactive)
for (d=0;d<ndev;d++)
wave_out_test_device(d);
if (ndev>0)
wave_out_test_device(WAVE_MAPPER);
......
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