4 static int test_init(const isds_error error
) {
9 FAIL_TEST("Wrong return value");
14 static int test_cleanup(const isds_error error
) {
19 FAIL_TEST("Wrong return value");
24 static int test_reinit(void) {
27 FAIL_TEST("isds_init() failed");
30 FAIL_TEST("isds_cleanup() failed");
34 int main(int argc
, char **argv
) {
36 INIT_TEST("isds_init");
38 TEST("first initialization", test_init
, IE_SUCCESS
);
39 TEST("first cleanup", test_cleanup
, IE_SUCCESS
);
41 TEST("reinitialization", test_reinit
);