summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Hattendorf <ianh@axosoft.com>2019-08-13 09:10:10 -0700
committerIan Hattendorf <ianh@axosoft.com>2019-08-13 09:10:10 -0700
commit62b801388025488beee42c665d3470dadc2ce257 (patch)
tree5065c6c07369c018d7be78112035055a638989f9
parentb15e7f2d50b865929c9081249b875f4771ca21d1 (diff)
downloadlibgit2-62b801388025488beee42c665d3470dadc2ce257.tar.gz
clone: Remove whitespace ssh test
Will add later when infrastructure is configured
-rw-r--r--tests/online/clone.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/online/clone.c b/tests/online/clone.c
index 55ab30c3d..3f8ee7fe2 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -869,18 +869,3 @@ void test_online_clone__path_whitespace(void)
cl_git_pass(git_clone(&g_repo, "https://libgit2@dev.azure.com/libgit2/test/_git/spaces%20in%20the%20name", "./foo", &g_options));
cl_assert(git_path_exists("./foo/master.txt"));
}
-
-void test_online_clone__path_whitespace_ssh(void)
-{
-#ifndef GIT_SSH
- clar__skip();
-#endif
-
- if (!_remote_ssh_privkey)
- clar__skip();
-
- g_options.fetch_opts.callbacks.credentials = cred_cb;
- g_options.fetch_opts.callbacks.certificate_check = NULL;
- cl_git_pass(git_clone(&g_repo, "ssh://git@ssh.dev.azure.com/v3/libgit2/test/spaces%20in%20the%20name", "./foo", &g_options));
- cl_assert(git_path_exists("./foo/master.txt"));
-}