1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

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

Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Fabian Maurer 2017-09-23 17:21:16 +02:00 committed by Alexandre Julliard
parent 119f84099b
commit 1c67258dbf
2 changed files with 3 additions and 9 deletions

View File

@ -1,5 +1,5 @@
TESTDLL = evr.dll
IMPORTS = mfuuid strmiids strmbase uuid ole32 oleaut32
IMPORTS = mfuuid strmiids uuid ole32 oleaut32
C_SRCS = \
filter.c

View File

@ -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);