[PATCH] evr/tests: Run the tests with todo_wine instead of skipping them

Fabian Maurer dark.shadow4 at web.de
Sat Sep 23 10:21:16 CDT 2017


Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
---
 dlls/evr/tests/filter.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/dlls/evr/tests/filter.c b/dlls/evr/tests/filter.c
index 4f82b14ddd..3bae738f5f 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);
-- 
2.14.1




More information about the wine-patches mailing list