47 lines
892 B
C
47 lines
892 B
C
#include "clar_libgit2.h"
|
|
#include "clar_libgit2_trace.h"
|
|
|
|
#ifdef _WIN32
|
|
int __cdecl main(int argc, char *argv[])
|
|
#else
|
|
int main(int argc, char *argv[])
|
|
#endif
|
|
{
|
|
int res;
|
|
char *at_exit_cmd;
|
|
|
|
clar_test_init(argc, argv);
|
|
|
|
res = git_libgit2_init();
|
|
if (res < 0) {
|
|
fprintf(stderr, "failed to init libgit2");
|
|
return res;
|
|
}
|
|
|
|
#if defined(GIT_WIN32) && defined(GIT_TEST_LONGPATHS)
|
|
if ((res = git_libgit2_opts(GIT_OPT_SET_WINDOWS_LONGPATHS, 1)) < 0) {
|
|
fprintf(stderr, "failed to set GIT_OPT_SET_WINDOWS_LONGPATHS");
|
|
return res;
|
|
}
|
|
#endif
|
|
|
|
cl_global_trace_register();
|
|
cl_sandbox_set_search_path_defaults();
|
|
|
|
/* Run the test suite */
|
|
res = clar_test_run();
|
|
|
|
clar_test_shutdown();
|
|
|
|
cl_global_trace_disable();
|
|
git_libgit2_shutdown();
|
|
|
|
at_exit_cmd = getenv("CLAR_AT_EXIT");
|
|
if (at_exit_cmd != NULL) {
|
|
int at_exit = system(at_exit_cmd);
|
|
return res || at_exit;
|
|
}
|
|
|
|
return res;
|
|
}
|