mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
22 lines
332 B
C
22 lines
332 B
C
#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();
|
|
}
|
|
|