Welcome to mirror list, hosted at ThFree Co, Russian Federation.

torture.c « tests « csync - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df5be3fd16173c23e62ffc3e97244a3f977c2928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "config.h"

#include "torture.h"

static int verbosity;

int torture_csync_verbosity(void)
{
  return verbosity;
}

int main(int argc, char **argv)
{
  struct argument_s arguments;

  arguments.verbose = 0;
  torture_cmdline_parse(argc, argv, &arguments);
  verbosity = arguments.verbose;

  return torture_run_tests();
}