Start the 2.46 cycle
[git.git] / t / t5602-clone-remote-exec.sh
blob56329aa160e7529eb2709be333919c9d172fabf3
1 #!/bin/sh
3 test_description=clone
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 test_expect_success setup '
9 echo "#!/bin/sh" > not_ssh &&
10 echo "echo \"\$*\" > not_ssh_output" >> not_ssh &&
11 echo "exit 1" >> not_ssh &&
12 chmod +x not_ssh
15 test_expect_success 'clone calls git upload-pack unqualified with no -u option' '
16 test_must_fail env GIT_SSH=./not_ssh git clone localhost:/path/to/repo junk &&
17 echo "localhost git-upload-pack '\''/path/to/repo'\''" >expected &&
18 test_cmp expected not_ssh_output
21 test_expect_success 'clone calls specified git upload-pack with -u option' '
22 test_must_fail env GIT_SSH=./not_ssh \
23 git clone -u ./something/bin/git-upload-pack localhost:/path/to/repo junk &&
24 echo "localhost ./something/bin/git-upload-pack '\''/path/to/repo'\''" >expected &&
25 test_cmp expected not_ssh_output
28 test_done