diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-06-20 13:16:52 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-06-21 18:39:22 +0300 |
commit | f2569bd8b6cff7f17ae71035cc3d4e86b2fc0cc4 (patch) | |
tree | 007f39f3a557c21a35ffb4fee586c1d9b4669810 /tests/rep-fetch.testscript | |
parent | 8bf1ad21e235017f80c1fb4566a051895a0cd85b (diff) |
Adapt rep-fetch tests to full support of git versions prior to 2.14
Diffstat (limited to 'tests/rep-fetch.testscript')
-rw-r--r-- | tests/rep-fetch.testscript | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/rep-fetch.testscript b/tests/rep-fetch.testscript index c2fd4cc..cd1c919 100644 --- a/tests/rep-fetch.testscript +++ b/tests/rep-fetch.testscript @@ -733,6 +733,13 @@ else .include rep-fetch-git.testscript } + : git-unadv + : + { + git_protocol = 'git-unadv' + .include rep-fetch-git.testscript + } + : ssh : if ($git_ssh == true) @@ -740,6 +747,14 @@ else git_protocol = 'ssh' .include rep-fetch-git.testscript } + + : ssh-unadv + : + if ($git_ssh == true) + { + git_protocol = 'ssh-unadv' + .include rep-fetch-git.testscript + } } : strip-ext |