aboutsummaryrefslogtreecommitdiff
path: root/tests/torture.c
blob: 1bd7b1594858b99ee4da1daecf2d52949119116e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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();
}