From: Francois Gouget fgouget@codeweavers.com
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=53141 --- dlls/dsound/tests/dsound.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/dsound/tests/dsound.c b/dlls/dsound/tests/dsound.c index d5a3ccad8fd..5e20491e790 100644 --- a/dlls/dsound/tests/dsound.c +++ b/dlls/dsound/tests/dsound.c @@ -1057,6 +1057,7 @@ static HRESULT test_notify(LPDIRECTSOUNDBUFFER dsb,
rc = IDirectSoundBuffer_GetStatus(dsb, &status); ok(rc == DS_OK,"Failed %08lx\n",rc); + flaky ok(status == DSBSTATUS_PLAYING,"got %08lx\n", status);
rc=IDirectSoundBuffer_Stop(dsb); @@ -1069,6 +1070,7 @@ static HRESULT test_notify(LPDIRECTSOUNDBUFFER dsb, ok(status == 0 /* Stopped */,"got %08lx\n", status);
ret = WaitForMultipleObjects(count, event, FALSE, 3000); + flaky ok(ret==expected,"expected %ld. got %ld\n",expected,ret);
return rc;