[PATCH 0/1] MR10447: quartz/tests: Remove todo_wine from tests that succeed now.
Follow up 63d79461bff. Thanks to Elizabeth Figura for pointing this out. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10447
From: Akihiro Sagawa <sagawa.aki@gmail.com> Follow up 63d79461bff. Thanks to Elizabeth Figura for pointing this out. --- dlls/quartz/tests/mpegaudio.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dlls/quartz/tests/mpegaudio.c b/dlls/quartz/tests/mpegaudio.c index 9fa6796e096..804cbbcc3d1 100644 --- a/dlls/quartz/tests/mpegaudio.c +++ b/dlls/quartz/tests/mpegaudio.c @@ -905,7 +905,6 @@ struct testfilter unsigned int got_sample, got_new_segment, got_eos, got_begin_flush, got_end_flush; REFERENCE_TIME expected_start_time; REFERENCE_TIME expected_stop_time; - BOOL todo_time; }; static inline struct testfilter *impl_from_strmbase_filter(struct strmbase_filter *iface) @@ -1013,9 +1012,7 @@ static HRESULT WINAPI testsink_Receive(struct strmbase_sink *iface, IMediaSample ok(hr == S_OK, "Got hr %#lx.\n", hr); if (filter->got_sample == 1) { - todo_wine_if(filter->todo_time) ok(start == filter->expected_start_time, "Got start time %s.\n", wine_dbgstr_longlong(start)); - todo_wine_if(filter->todo_time) ok(stop == filter->expected_stop_time, "Got stop time %s.\n", wine_dbgstr_longlong(stop)); } @@ -1513,7 +1510,6 @@ static void test_streaming_events(IMediaControl *control, IPin *sink, testsink->expected_start_time = 0; testsink->expected_stop_time = 120000; - testsink->todo_time = TRUE; hr = IMemInputPin_Receive(input, sample); ok(hr == S_OK, "Got hr %#lx.\n", hr); hr = IMemInputPin_Receive(input, sample); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10447
participants (2)
-
Akihiro Sagawa -
Akihiro Sagawa (@sgwaki)