summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVicent Marti <vicent@github.com>2014-08-27 19:19:55 +0200
committerVicent Marti <vicent@github.com>2014-08-27 19:19:55 +0200
commit69db89342712f47ee84d9368823ec294a0db1c65 (patch)
tree66e3836204f1253bdff24c472499feddd9ce47fd /tests
parent893cfe06493533581d25c2f120334fbf4961cdff (diff)
parentf0c53d21a43a098da2bf96a955ee22feb9ab8a5a (diff)
downloadlibgit2-69db89342712f47ee84d9368823ec294a0db1c65.tar.gz
Merge pull request #2538 from libgit2/ntk/propagate_url_parsing_error
winhttp: Prevent swallowing of url parsing error
Diffstat (limited to 'tests')
-rw-r--r--tests/online/clone.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/online/clone.c b/tests/online/clone.c
index 39b4815b1..1ccaf2773 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -463,3 +463,9 @@ void test_online_clone__ssh_cannot_change_username(void)
cl_git_fail(git_clone(&g_repo, "ssh://git@github.com/libgit2/TestGitRepository", "./foo", &g_options));
}
+
+void test_online_clone__url_with_no_path_returns_EINVALIDSPEC(void)
+{
+ cl_git_fail_with(git_clone(&g_repo, "http://github.com", "./foo", &g_options),
+ GIT_EINVALIDSPEC);
+}