From da73fb70de05f61d39b8dd18bd73628ddbf0f63f Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Wed, 20 Jun 2012 12:48:41 -0700 Subject: [PATCH] Disable long-running test. --- tests-clar/clone/clone.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests-clar/clone/clone.c b/tests-clar/clone/clone.c index 1f110da81..6fb6a7984 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 }