1
1

tests: Call ssh_init() and ssh_finalize() before we run the tests.

Этот коммит содержится в:
Andreas Schneider 2011-01-02 09:19:53 +01:00
родитель d4072082d0
Коммит ef1866db76

Просмотреть файл

@ -1,6 +1,7 @@
#include "torture.h"
#include <stdio.h>
#include <libssh/libssh.h>
#include "torture.h"
static int verbosity = 0;
@ -9,8 +10,16 @@ int torture_libssh_verbosity(void){
}
int main(int argc, char **argv) {
int rc;
(void) argc;
(void) argv;
return torture_run_tests();
ssh_init();
rc = torture_run_tests();
ssh_finalize();
return rc;
}