summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2014-03-28 10:10:59 -0700
committerEdward Thomson <ethomson@microsoft.com>2014-03-28 10:39:15 -0700
commite0d61c7b1caa011ab6a7777535823fe18c50e13c (patch)
treeeb82c734fe7ef2de9b506293d644e9f4bb69d06b
parent10be94e9dc79b79842587dc4ef395d2033c9aae4 (diff)
downloadlibgit2-e0d61c7b1caa011ab6a7777535823fe18c50e13c.tar.gz
Sandbox configuration during test runs
-rw-r--r--tests/main.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/main.c b/tests/main.c
index 6b498939d..ffbbcbf48 100644
--- a/tests/main.c
+++ b/tests/main.c
@@ -6,12 +6,21 @@ int __cdecl main(int argc, char *argv[])
int main(int argc, char *argv[])
#endif
{
+ const char *sandbox_path;
int res;
+ clar_test_init(argc, argv);
+
git_threads_init();
+ sandbox_path = clar_sandbox_path();
+ git_libgit2_opts(GIT_OPT_SET_SEARCH_PATH, GIT_CONFIG_LEVEL_GLOBAL, sandbox_path);
+ git_libgit2_opts(GIT_OPT_SET_SEARCH_PATH, GIT_CONFIG_LEVEL_XDG, sandbox_path);
+
/* Run the test suite */
- res = clar_test(argc, argv);
+ res = clar_test_run();
+
+ clar_test_shutdown();
giterr_clear();
git_threads_shutdown();