2011-01-02 09:19:53 +01:00
|
|
|
#include "torture.h"
|
2010-03-02 13:47:14 +01:00
|
|
|
|
2011-01-02 17:15:03 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2010-12-28 13:43:32 +01:00
|
|
|
static int verbosity = 0;
|
2010-03-02 13:47:14 +01:00
|
|
|
|
2010-05-18 23:02:41 +02:00
|
|
|
int torture_libssh_verbosity(void){
|
|
|
|
return verbosity;
|
|
|
|
}
|
|
|
|
|
2010-05-18 22:25:06 +02:00
|
|
|
int main(int argc, char **argv) {
|
2010-12-30 12:12:34 +01:00
|
|
|
(void) argc;
|
|
|
|
(void) argv;
|
|
|
|
|
2011-01-02 17:15:03 +01:00
|
|
|
return torture_run_tests();
|
2010-05-18 22:25:06 +02:00
|
|
|
}
|