dsound/tests: Allow more time for an event to be signalled.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47868
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Alistair Leslie-Hughes 2019-10-03 04:55:07 +00:00 committed by Alexandre Julliard
parent 0bdaecd2d7
commit 594cc41e94
1 changed files with 1 additions and 1 deletions

View File

@ -1089,7 +1089,7 @@ static HRESULT test_notify(LPDIRECTSOUNDBUFFER dsb,
ok(rc == DS_OK,"Failed %08x\n",rc);
ok(status == 0 /* Stopped */,"got %08x\n", status);
ret=WaitForMultipleObjects(count,event,FALSE,0);
ret = WaitForMultipleObjects(count, event, FALSE, 3000);
ok(ret==expected,"expected %d. got %d\n",expected,ret);
return rc;