tests/eldbus: add now needed calls to ecore_init/shutdown

Since commit 53c66c98c2 eldbus o longer calls
ecore_init() wo we need to handle this. Fixes the edlbus tests cases.
This commit is contained in:
Stefan Schmidt 2016-04-12 17:22:28 +02:00
parent 8712f03f57
commit 5065356ae6
2 changed files with 5 additions and 0 deletions

View File

@ -22,10 +22,13 @@ START_TEST(eldbus_test_eldbus)
{
int ret;
ecore_init();
ret = eldbus_init();
fail_if(ret < 1);
ret = eldbus_shutdown();
ecore_shutdown();
}
END_TEST

View File

@ -90,6 +90,7 @@ efl_model_load_and_wait_for_load_status(Eo *obj, Efl_Model_Load_Status expected_
void
check_init(void)
{
ecore_init();
int ret = eldbus_init();
ck_assert_int_ge(ret, 1);
}
@ -99,6 +100,7 @@ check_shutdown(void)
{
int ret = eldbus_shutdown();
ck_assert_int_eq(ret, 0);
ecore_shutdown();
}
void