Remove ecore_{init,shutdown} from tests

Now ecore_x properly calls ecore_start() and ecore_shutdown(), as it should
be, so no need to do it here.



SVN revision: 50837
This commit is contained in:
Lucas De Marchi 2010-08-05 13:58:49 +00:00
parent bbc863fbe7
commit a42edc5cdc
1 changed files with 0 additions and 2 deletions

View File

@ -346,7 +346,6 @@ END_TEST
START_TEST(ecore_test_ecore_x_bell)
{
int ret = 0, i;
ecore_init();
ecore_x_init(NULL);
printf("You should hear 3 beeps now.\n");
@ -358,7 +357,6 @@ START_TEST(ecore_test_ecore_x_bell)
sleep(1);
}
ecore_x_shutdown();
ecore_shutdown();
}
END_TEST