summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorVitor Antunes <vitor.hda@gmail.com>2013-07-18 23:04:53 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-07-21 22:34:10 (GMT)
commit7c8ce4ed32aec3b86a271c2661ad9dfb0084c3f9 (patch)
treeb3a1a192eb91d815d458aa24df85750f5fae8e9b /t
parentf893b7420cdf085dfde809d4ea97cb8c03b81c94 (diff)
downloadgit-7c8ce4ed32aec3b86a271c2661ad9dfb0084c3f9.zip
git-7c8ce4ed32aec3b86a271c2661ad9dfb0084c3f9.tar.gz
git-7c8ce4ed32aec3b86a271c2661ad9dfb0084c3f9.tar.bz2
t9801: git-p4: check ignore files with client spec
This test confirms that a file can be ignored during git p4 sync if if is excluded in P4 client specification. Signed-off-by: Vitor Antunes <vitor.hda@gmail.com> Acked-by: Pete Wyckoff <pw@padd.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t9801-git-p4-branch.sh23
1 files changed, 20 insertions, 3 deletions
diff --git a/t/t9801-git-p4-branch.sh b/t/t9801-git-p4-branch.sh
index 9730821..2bf142d 100755
--- a/t/t9801-git-p4-branch.sh
+++ b/t/t9801-git-p4-branch.sh
@@ -469,9 +469,11 @@ test_expect_success 'use-client-spec detect-branches skips branches setup' '
View: //depot/usecs/b1/... //depot/usecs/b3/...
EOF
- echo b3/b3-file3 >b3/b3-file3 &&
- p4 add b3/b3-file3 &&
- p4 submit -d "b3/b3-file3"
+ echo b3/b3-file3_1 >b3/b3-file3_1 &&
+ echo b3/b3-file3_2 >b3/b3-file3_2 &&
+ p4 add b3/b3-file3_1 &&
+ p4 add b3/b3-file3_2 &&
+ p4 submit -d "b3/b3-file3_1 b3/b3-file3_2"
)
'
@@ -487,6 +489,21 @@ test_expect_success 'use-client-spec detect-branches skips branches' '
)
'
+test_expect_success 'use-client-spec detect-branches skips files in branches' '
+ client_view "//depot/usecs/... //client/..." \
+ "-//depot/usecs/b3/b3-file3_1 //client/b3/b3-file3_1" &&
+ test_when_finished cleanup_git &&
+ test_create_repo "$git" &&
+ (
+ cd "$git" &&
+ git p4 sync --detect-branches --use-client-spec //depot/usecs@all &&
+ git checkout -b master p4/usecs/b3 &&
+ test_path_is_file b1-file1 &&
+ test_path_is_file b3-file3_2 &&
+ test_path_is_missing b3-file3_1
+ )
+'
+
test_expect_success 'kill p4d' '
kill_p4d
'