Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-01-03 03:50:29 +0400
committerVicent Marti <tanoku@gmail.com>2013-01-03 03:50:29 +0400
commit6443eaf22f3567a430f038e8edc92e9f101db44d (patch)
treebe65d859407739ff95926f276faf96205a48d644 /tests-clar/online/clone.c
parent39cd01779c84e0574c11f2e804f28c815e82a583 (diff)
Disable Network suite by default
Diffstat (limited to 'tests-clar/online/clone.c')
-rw-r--r--tests-clar/online/clone.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests-clar/online/clone.c b/tests-clar/online/clone.c
index f783a5a8b..bf35fac04 100644
--- a/tests-clar/online/clone.c
+++ b/tests-clar/online/clone.c
@@ -10,7 +10,7 @@ static git_repository *g_repo;
static git_remote *g_origin;
static git_clone_options g_options;
-void test_clone_network__initialize(void)
+void test_online_clone__initialize(void)
{
g_repo = NULL;
@@ -19,7 +19,7 @@ void test_clone_network__initialize(void)
cl_git_pass(git_remote_new(&g_origin, NULL, "origin", LIVE_REPO_URL, GIT_REMOTE_DEFAULT_FETCH));
}
-void test_clone_network__cleanup(void)
+void test_online_clone__cleanup(void)
{
git_remote_free(g_origin);
}
@@ -34,7 +34,7 @@ static void cleanup_repository(void *path)
}
-void test_clone_network__network_full(void)
+void test_online_clone__network_full(void)
{
git_remote *origin;
@@ -48,7 +48,7 @@ void test_clone_network__network_full(void)
}
-void test_clone_network__network_bare(void)
+void test_online_clone__network_bare(void)
{
git_remote *origin;
@@ -62,7 +62,7 @@ void test_clone_network__network_bare(void)
git_remote_free(origin);
}
-void test_clone_network__cope_with_already_existing_directory(void)
+void test_online_clone__cope_with_already_existing_directory(void)
{
cl_set_cleanup(&cleanup_repository, "./foo");
@@ -70,7 +70,7 @@ void test_clone_network__cope_with_already_existing_directory(void)
cl_git_pass(git_clone(&g_repo, g_origin, "./foo", &g_options));
}
-void test_clone_network__empty_repository(void)
+void test_online_clone__empty_repository(void)
{
git_reference *head;
@@ -91,7 +91,7 @@ void test_clone_network__empty_repository(void)
git_reference_free(head);
}
-void test_clone_network__can_prevent_the_checkout_of_a_standard_repo(void)
+void test_online_clone__can_prevent_the_checkout_of_a_standard_repo(void)
{
git_buf path = GIT_BUF_INIT;
cl_set_cleanup(&cleanup_repository, "./foo");
@@ -118,7 +118,7 @@ static void fetch_progress(const git_transfer_progress *stats, void *payload)
(*was_called) = true;
}
-void test_clone_network__can_checkout_a_cloned_repo(void)
+void test_online_clone__can_checkout_a_cloned_repo(void)
{
git_checkout_opts opts = GIT_CHECKOUT_OPTS_INIT;
git_buf path = GIT_BUF_INIT;