diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-09-03 14:51:56 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-03 14:51:56 -0700 |
commit | 36f44a06802960abce7febbf9cc40461e5546ee5 (patch) | |
tree | d0001f04f2edfb3644c304626908f31d495cb17b /t/t5602-clone-remote-exec.sh | |
parent | 73bae1dc468734bad3ff7d1b8e93e7ac5f9d3dff (diff) | |
parent | 47a528ad24185133867ebb5bb7692db2cb8bef39 (diff) | |
download | git-36f44a06802960abce7febbf9cc40461e5546ee5.tar.gz |
Merge branch 'ho/dashless' into maint
* ho/dashless:
tests: use "git xyzzy" form (t7200 - t9001)
tests: use "git xyzzy" form (t7000 - t7199)
tests: use "git xyzzy" form (t3600 - t6999)
tests: use "git xyzzy" form (t0000 - t3599)
'git foo' program identifies itself without dash in die() messages
Start conforming code to "git subcmd" style
Diffstat (limited to 't/t5602-clone-remote-exec.sh')
-rwxr-xr-x | t/t5602-clone-remote-exec.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5602-clone-remote-exec.sh b/t/t5602-clone-remote-exec.sh index 8367a6845f..82b1d1e2b3 100755 --- a/t/t5602-clone-remote-exec.sh +++ b/t/t5602-clone-remote-exec.sh @@ -11,13 +11,13 @@ test_expect_success setup ' chmod +x not_ssh ' -test_expect_success 'clone calls git-upload-pack unqualified with no -u option' ' +test_expect_success 'clone calls git upload-pack unqualified with no -u option' ' GIT_SSH=./not_ssh git clone localhost:/path/to/repo junk echo "localhost git-upload-pack '\''/path/to/repo'\''" >expected test_cmp expected not_ssh_output ' -test_expect_success 'clone calls specified git-upload-pack with -u option' ' +test_expect_success 'clone calls specified git upload-pack with -u option' ' GIT_SSH=./not_ssh git clone -u /something/bin/git-upload-pack localhost:/path/to/repo junk echo "localhost /something/bin/git-upload-pack '\''/path/to/repo'\''" >expected test_cmp expected not_ssh_output |