Commit da73fb70de05f61d39b8dd18bd73628ddbf0f63f

Ben Straub 2012-06-20T12:48:41

Disable long-running test.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/tests-clar/clone/clone.c b/tests-clar/clone/clone.c
index 1f110da..6fb6a79 100644
--- a/tests-clar/clone/clone.c
+++ b/tests-clar/clone/clone.c
@@ -88,6 +88,7 @@ void test_clone_clone__local(void)
 
 void test_clone_clone__network(void)
 {
+#if 0
   cl_git_pass(git_clone(&g_repo,
                         "https://github.com/libgit2/libgit2.git",
                         "./libgit2", NULL));
@@ -96,6 +97,7 @@ void test_clone_clone__network(void)
                              "./libgit2.git", NULL));
   git_futils_rmdir_r("./libgit2", GIT_DIRREMOVAL_FILES_AND_DIRS);
   git_futils_rmdir_r("./libgit2.git", GIT_DIRREMOVAL_FILES_AND_DIRS);
+#endif
 }