Commit 85844ff5 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

mmdevapi/tests: Relax a capture test.

parent 23de0bff
......@@ -283,7 +283,7 @@ static void test_capture(IAudioClient *ac, HANDLE handle, WAVEFORMATEX *wfx)
/* Native's position is one period further than what we read.
* Perhaps that's precisely the meaning of DATA_DISCONTINUITY:
* signal when the position jump left a gap. */
ok(pos == sum + frames, "Position %u last %u frames %u\n", (UINT)pos, sum, frames);
ok(pos >= sum + frames, "Position %u last %u frames %u\n", (UINT)pos, sum, frames);
sum = pos;
}else{ /* win10 */
ok(pos == sum, "Position %u last %u frames %u\n", (UINT)pos, sum, frames);
......
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