Bernhard Kölbl : windows.media.speech/tests: Make waits non infinite.

Alexandre Julliard julliard at winehq.org
Thu Apr 21 15:21:38 CDT 2022


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

Author: Bernhard Kölbl <besentv at gmail.com>
Date:   Wed Apr 20 21:34:10 2022 +0200

windows.media.speech/tests: Make waits non infinite.

Signed-off-by: Bernhard Kölbl <besentv at gmail.com>
Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/windows.media.speech/tests/speech.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/windows.media.speech/tests/speech.c b/dlls/windows.media.speech/tests/speech.c
index e4d65d3afd4..3021686b228 100644
--- a/dlls/windows.media.speech/tests/speech.c
+++ b/dlls/windows.media.speech/tests/speech.c
@@ -968,7 +968,7 @@ static void test_SpeechRecognizer(void)
         todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
         todo_wine check_refcount(&compilation_handler.IAsyncHandler_Compilation_iface, 1);
 
-        WaitForSingleObject(compilation_handler.event_finished, INFINITE);
+        todo_wine ok(!WaitForSingleObject(compilation_handler.event_finished, 1000), "Wait for event_finished failed.\n");
         CloseHandle(compilation_handler.event_finished);
 
         hr = IAsyncOperation_SpeechRecognitionCompilationResult_put_Completed(operation, NULL);
@@ -1072,7 +1072,7 @@ static void test_SpeechRecognizer(void)
         hr = IAsyncOperation_SpeechRecognitionCompilationResult_put_Completed(operation, &compilation_handler2.IAsyncHandler_Compilation_iface);
         todo_wine ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
 
-        WaitForSingleObject(compilation_handler2.event_finished, INFINITE);
+        todo_wine ok(!WaitForSingleObject(compilation_handler2.event_finished, 1000), "Wait for event_finished failed.\n");
         CloseHandle(compilation_handler2.event_finished);
 
         async_status = 0xdeadbeef;




More information about the wine-cvs mailing list