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:
authorMichael Schubert <schu@schu.io>2013-05-21 15:56:40 +0400
committerMichael Schubert <schu@schu.io>2013-05-27 14:12:27 +0400
commit0582ae6fde94912c4ac7566f151bd0e3b786bb43 (patch)
tree78bd1d40e244064d29a4d5ef62122ab2ecf8ab8e /tests-clar
parent5aee96329ab7869cbe90cf80fd2a3f8f4dc5dccf (diff)
tests: don't verify SSH unsupported with GIT_SSH
Diffstat (limited to 'tests-clar')
-rw-r--r--tests-clar/network/remote/remotes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests-clar/network/remote/remotes.c b/tests-clar/network/remote/remotes.c
index 21f27bcc6..34f1c055c 100644
--- a/tests-clar/network/remote/remotes.c
+++ b/tests-clar/network/remote/remotes.c
@@ -100,7 +100,9 @@ void test_network_remote_remotes__supported_transport_methods_are_supported(void
void test_network_remote_remotes__unsupported_transport_methods_are_unsupported(void)
{
+#ifndef GIT_SSH
cl_assert( !git_remote_supported_url("git@github.com:libgit2/libgit2.git") );
+#endif
}
void test_network_remote_remotes__refspec_parsing(void)