libgit2/tests/main.c
Russell Belfer 8487e23797 Better search path sandboxing
There are a number of tests that modify the global or system
search paths during the tests.  This adds a helper function to
make it easier to restore those paths and makes sure that they
are getting restored in a manner that preserves test isolation.
2014-05-15 10:56:28 -07:00

26 lines
366 B
C

#include "clar_libgit2.h"
#ifdef _WIN32
int __cdecl main(int argc, char *argv[])
#else
int main(int argc, char *argv[])
#endif
{
int res;
clar_test_init(argc, argv);
git_threads_init();
cl_sandbox_set_search_path_defaults();
/* Run the test suite */
res = clar_test_run();
clar_test_shutdown();
giterr_clear();
git_threads_shutdown();
return res;
}