tests: check whether ecore is properly shut down after elm_shutdown

Signed-off-by: Mike Blumenkrantz <zmike@osg.samsung.com>
This commit is contained in:
Cedric BAIL 2018-03-13 11:29:55 -04:00
parent 14bbae9b23
commit e0c863a358
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ START_TEST (elm_main)
char *args[] = { "exe" };
ck_assert(elm_init(1, args) == 1);
ck_assert(elm_shutdown() == 0);
ck_assert(ecore_init() == 1);
ck_assert(ecore_shutdown() == 0);
}
END_TEST