From 1c67258dbf2e0c2ae399bf3ef8a027fe74e9a002 Mon Sep 17 00:00:00 2001 From: Fabian Maurer Date: Sat, 23 Sep 2017 17:21:16 +0200 Subject: [PATCH] evr/tests: Run the tests with todo_wine instead of skipping them. Signed-off-by: Fabian Maurer Signed-off-by: Alexandre Julliard --- dlls/evr/tests/Makefile.in | 2 +- dlls/evr/tests/filter.c | 10 ++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/dlls/evr/tests/Makefile.in b/dlls/evr/tests/Makefile.in index c370646fbc3..5ee4f84bad7 100644 --- a/dlls/evr/tests/Makefile.in +++ b/dlls/evr/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = evr.dll -IMPORTS = mfuuid strmiids strmbase uuid ole32 oleaut32 +IMPORTS = mfuuid strmiids uuid ole32 oleaut32 C_SRCS = \ filter.c diff --git a/dlls/evr/tests/filter.c b/dlls/evr/tests/filter.c index 4f82b14ddd5..3bae738f5f3 100644 --- a/dlls/evr/tests/filter.c +++ b/dlls/evr/tests/filter.c @@ -83,8 +83,8 @@ static void test_aggregation(const CLSID clsid_inner, const IID iid_inner, const /* aggregation, request IUnknown */ hr = CoCreateInstance(&clsid_inner, unk_outer, CLSCTX_INPROC_SERVER, &IID_IUnknown, (LPVOID*)&unk_inner); - ok(hr == S_OK, "%s: run %d: Third CoCreateInstance returned %x\n", testid, testrun, hr); - ok(unk_inner != NULL, "%s: run %d: unk_inner is NULL\n", testid, testrun); + todo_wine ok(hr == S_OK, "%s: run %d: Third CoCreateInstance returned %x\n", testid, testrun, hr); + todo_wine ok(unk_inner != NULL, "%s: run %d: unk_inner is NULL\n", testid, testrun); if (!unk_inner) { @@ -163,12 +163,6 @@ static void test_evr_filter_aggregations(void) }; int i; - if(!strcmp(winetest_platform, "wine")) - { - skip("Not supported yet.\n"); - return; - } - for (i = 0; i < sizeof(iids) / sizeof(iids[0]); i++) { test_aggregation(CLSID_EnhancedVideoRenderer, *iids[i], "filter", i);