quartz: Move current tests into their own test case.
This commit is contained in:
parent
5f7a9cea38
commit
f84f4cab70
|
@ -85,11 +85,10 @@ static void releasefiltergraph(void)
|
|||
ok(hr==0, "Releasing filtergraph returned: %x\n", hr);
|
||||
}
|
||||
|
||||
START_TEST(filtergraph)
|
||||
static void test_render_run(void)
|
||||
{
|
||||
HANDLE h;
|
||||
|
||||
CoInitialize(NULL);
|
||||
if (!createfiltergraph())
|
||||
return;
|
||||
|
||||
|
@ -102,3 +101,9 @@ START_TEST(filtergraph)
|
|||
|
||||
releasefiltergraph();
|
||||
}
|
||||
|
||||
START_TEST(filtergraph)
|
||||
{
|
||||
CoInitialize(NULL);
|
||||
test_render_run();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue