mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-12-24 19:37:48 +03:00
Reason: breaks test_rand, because threading has to be initialized
before ssh_init()
This reverts commit ef1866db76.
17 lines
231 B
C
17 lines
231 B
C
#include "torture.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
static int verbosity = 0;
|
|
|
|
int torture_libssh_verbosity(void){
|
|
return verbosity;
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
(void) argc;
|
|
(void) argv;
|
|
|
|
return torture_run_tests();
|
|
}
|