Commit 1c67258d authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

evr/tests: Run the tests with todo_wine instead of skipping them.

parent 119f8409
TESTDLL = evr.dll
IMPORTS = mfuuid strmiids strmbase uuid ole32 oleaut32
IMPORTS = mfuuid strmiids uuid ole32 oleaut32
C_SRCS = \
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment