summaryrefslogtreecommitdiff
path: root/tests-clar/main.c
blob: 0102c91c46404effed93579106c832d34aab0f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "clar_libgit2.h"

#ifdef _WIN32
__cdecl int
#else
int
#endif
main(int argc, char *argv[])
{
	int res;

	git_threads_init();

	/* Run the test suite */
	res = clar_test(argc, argv);

	giterr_clear();
	git_threads_shutdown();

	return res;
}