[PATCH v2 5/6] windows.media.speech: Implement concurrency in IAsyncOperation.

Rémi Bernon rbernon at codeweavers.com
Fri Apr 22 08:45:49 CDT 2022


Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
---

> @@ -1096,9 +1096,9 @@ static void test_SpeechRecognizer(void)
>           ok(async_status == Completed, "Status was %#x.\n", async_status);
>   
>           ref = IAsyncInfo_Release(info);
> -        ok(ref == 1, "Got unexpected ref %lu.\n", ref);
> +        ok(ref >= 1, "Got unexpected ref %lu.\n", ref);
>           ref = IAsyncOperation_SpeechRecognitionCompilationResult_Release(operation);
> -        ok(!ref, "Got unexpected ref %lu.\n", ref);
> +        ok(ref >= 0, "Got unexpected ref %lu.\n", ref);
>   

Though I think this check is then useless.



More information about the wine-devel mailing list