quartz: Move current tests into their own test case.

This commit is contained in:
Lei Zhang 2007-12-05 20:10:24 -08:00 committed by Alexandre Julliard
parent 5f7a9cea38
commit f84f4cab70
1 changed files with 11 additions and 6 deletions

View File

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