1
1
libssh/tests/unittests/torture_init.c

28 строки
496 B
C
Исходник Обычный вид История

2010-05-07 15:39:08 +04:00
#define LIBSSH_STATIC
2010-05-07 15:39:08 +04:00
#include "torture.h"
#include "libssh/libssh.h"
2010-05-07 15:39:08 +04:00
static void torture_ssh_init(void **state) {
2010-05-07 15:39:08 +04:00
int rc;
(void) state;
2010-05-07 15:39:08 +04:00
rc = ssh_init();
assert_int_equal(rc, SSH_OK);
rc = ssh_finalize();
assert_int_equal(rc, SSH_OK);
2010-05-07 15:39:08 +04:00
}
int torture_run_tests(void) {
int rc;
struct CMUnitTest tests[] = {
cmocka_unit_test(torture_ssh_init),
};
torture_filter_tests(tests);
rc = cmocka_run_group_tests(tests, NULL, NULL);
return 0;
}