Alistair Leslie-Hughes : dsound/tests: Allow more time for an event to be signalled.

Alexandre Julliard julliard at winehq.org
Thu Oct 3 16:44:00 CDT 2019


Module: wine
Branch: master
Commit: 594cc41e94d7a20d383d9e1e3a0e42926ce89283
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=594cc41e94d7a20d383d9e1e3a0e42926ce89283

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Thu Oct  3 04:55:07 2019 +0000

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 at hotmail.com>
Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dsound/tests/dsound.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dsound/tests/dsound.c b/dlls/dsound/tests/dsound.c
index d242bf6b24..7fdac9144e 100644
--- a/dlls/dsound/tests/dsound.c
+++ b/dlls/dsound/tests/dsound.c
@@ -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;




More information about the wine-cvs mailing list