Two instances of these three tests failing can be found here:
https://gitlab.winehq.org/sbaars/wine/-/jobs/5998 https://test.winehq.org/data/c937155ff6100c6ec2d8d1873dc7878041856e1a/linux_...
From: Sven Baars sbaars@codeweavers.com
--- dlls/mmdevapi/tests/capture.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/mmdevapi/tests/capture.c b/dlls/mmdevapi/tests/capture.c index e7865457cbe..f3b426a7f9a 100644 --- a/dlls/mmdevapi/tests/capture.c +++ b/dlls/mmdevapi/tests/capture.c @@ -307,7 +307,9 @@ static void test_capture(IAudioClient *ac, HANDLE handle, WAVEFORMATEX *wfx) hr==S_OK ? (UINT)pos : -1, pad, flags, frames);
if(hr == S_OK){ + flaky_wine ok(pos == sum, "Position %u expected %u\n", (UINT)pos, sum); + flaky_wine ok(!flags, "flags %lu\n", flags);
hr = IAudioCaptureClient_ReleaseBuffer(acc, frames); @@ -334,6 +336,7 @@ static void test_capture(IAudioClient *ac, HANDLE handle, WAVEFORMATEX *wfx) ok(pad > sum, "restarted GCP %u\n", pad); /* GCP is still near buffer size */
if(frames){ + flaky_wine ok(pos == sum, "Position %u expected %u\n", (UINT)pos, sum); ok(!flags, "flags %lu\n", flags);
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=126787
Your paranoid android.
=== w1064v1809 (32 bit report) ===
mmdevapi: capture.c:286: Test failed: Position 3504 last 1264 frames 448
This merge request was approved by Davide Beatrici.
This merge request was approved by Huw Davies.