do ecore_init, so ecore_time_get works

SVN revision: 54827
This commit is contained in:
Sebastian Dransfeld 2010-11-22 20:50:32 +00:00
parent 5c4adef911
commit c36317f77c
1 changed files with 2 additions and 0 deletions

View File

@ -115,6 +115,7 @@ main(int argc, char ** argv)
double total;
eina_init();
ecore_init();
total = ecore_time_get();
if (argc > 1)
@ -178,6 +179,7 @@ main(int argc, char ** argv)
printf("Total run: %.3f seconds\n", ecore_time_get() - total);
ecore_shutdown();
eina_shutdown();
return 0;
}