Add missing ecore_{init,shutdown} to bell test

SVN revision: 50829
This commit is contained in:
Lucas De Marchi 2010-08-05 02:25:50 +00:00
parent a470ed668c
commit 9a89c799d7
1 changed files with 2 additions and 0 deletions

View File

@ -346,6 +346,7 @@ 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");
@ -357,6 +358,7 @@ START_TEST(ecore_test_ecore_x_bell)
sleep(1);
}
ecore_x_shutdown();
ecore_shutdown();
}
END_TEST