mirror of
https://github.com/reactos/wine.git
synced 2025-02-15 10:29:19 +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:
parent
119f84099b
commit
1c67258dbf
@ -1,5 +1,5 @@
|
||||
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user