tests: eina: check return of eina_module_load and unload

These could fail as well. Check in testsuite.

CID: 1400961
This commit is contained in:
Stefan Schmidt 2020-06-09 15:17:36 +02:00
parent f1a0174d9b
commit 251c5f3fdc
1 changed files with 2 additions and 2 deletions

View File

@ -32,14 +32,14 @@ static Eina_Bool list_cb(Eina_Module *m, void *data EINA_UNUSED)
const char *file;
/* the reference count */
eina_module_load(m);
fail_if(!eina_module_load(m));
/* get */
sym = eina_module_symbol_get(m, "dummy_symbol");
fail_if(!sym);
fail_if(*sym != 0xbad);
file = eina_module_file_get(m);
fail_if(!file);
eina_module_unload(m);
fail_if(eina_module_unload(m));
return EINA_TRUE;
}