]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9808-git-p4-chdir.sh
Merge branch 'da/gitk-reload-tag-contents'
[thirdparty/git.git] / t / t9808-git-p4-chdir.sh
CommitLineData
57526fde
PW
1#!/bin/sh
2
6ab1d76c 3test_description='git p4 relative chdir'
57526fde
PW
4
5. ./lib-git-p4.sh
6
7test_expect_success 'start p4d' '
8 start_p4d
9'
10
11test_expect_success 'init depot' '
12 (
13 cd "$cli" &&
14 echo file1 >file1 &&
15 p4 add file1 &&
16 p4 submit -d "change 1"
17 )
18'
19
20# P4 reads from P4CONFIG file to find its server params, if the
21# environment variable is set
22test_expect_success 'P4CONFIG and absolute dir clone' '
23 printf "P4PORT=$P4PORT\nP4CLIENT=$P4CLIENT\n" >p4config &&
08c5eb7a 24 test_when_finished "rm p4config" &&
57526fde
PW
25 test_when_finished cleanup_git &&
26 (
27 P4CONFIG=p4config && export P4CONFIG &&
1f5ad6b1 28 sane_unset P4PORT P4CLIENT &&
6ab1d76c 29 git p4 clone --verbose --dest="$git" //depot
57526fde
PW
30 )
31'
32
33# same thing, but with relative directory name, note missing $ on --dest
34test_expect_success 'P4CONFIG and relative dir clone' '
35 printf "P4PORT=$P4PORT\nP4CLIENT=$P4CLIENT\n" >p4config &&
08c5eb7a 36 test_when_finished "rm p4config" &&
57526fde
PW
37 test_when_finished cleanup_git &&
38 (
39 P4CONFIG=p4config && export P4CONFIG &&
1f5ad6b1 40 sane_unset P4PORT P4CLIENT &&
6ab1d76c 41 git p4 clone --verbose --dest="git" //depot
57526fde
PW
42 )
43'
44
45test_expect_success 'kill p4d' '
46 kill_p4d
47'
48
49test_done