3 test_description
='git-p4 relative chdir'
7 test_expect_success
'start p4d' '
11 test_expect_success
'init depot' '
16 p4 submit -d "change 1"
20 # P4 reads from P4CONFIG file to find its server params, if the
21 # environment variable is set
22 test_expect_success
'P4CONFIG and absolute dir clone' '
23 printf "P4PORT=$P4PORT\nP4CLIENT=$P4CLIENT\n" >p4config &&
24 test_when_finished "rm \"$TRASH_DIRECTORY/p4config\"" &&
25 test_when_finished cleanup_git &&
27 P4CONFIG=p4config && export P4CONFIG &&
28 sane_unset P4PORT P4CLIENT &&
29 "$GITP4" clone --verbose --dest="$git" //depot
33 # same thing, but with relative directory name, note missing $ on --dest
34 test_expect_success
'P4CONFIG and relative dir clone' '
35 printf "P4PORT=$P4PORT\nP4CLIENT=$P4CLIENT\n" >p4config &&
36 test_when_finished "rm \"$TRASH_DIRECTORY/p4config\"" &&
37 test_when_finished cleanup_git &&
39 P4CONFIG=p4config && export P4CONFIG &&
40 sane_unset P4PORT P4CLIENT &&
41 "$GITP4" clone --verbose --dest="git" //depot
45 test_expect_success
'kill p4d' '