Remove ecore_{init,shutdown} from tests
authorlucas <lucas@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 5 Aug 2010 13:58:49 +0000 (13:58 +0000)
committerlucas <lucas@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 5 Aug 2010 13:58:49 +0000 (13:58 +0000)
Now ecore_x properly calls ecore_start() and ecore_shutdown(), as it should
be, so no need to do it here.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@50837 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/tests/ecore_test_ecore.c

index 254d938..364eb1a 100644 (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