summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-05-13 23:26:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-05-13 23:26:08 (GMT)
commite289f681ede1aad2ded33e76518bdc80064f3c16 (patch)
treecca122a152a052b80978db87a835e08b40a31aa8 /t
parenteede71149ec0e03eeb4d469e18d16ff4def1cd35 (diff)
parent6b79818bfbd39a5d41d15003375a9f382f70ad0e (diff)
downloadgit-e289f681ede1aad2ded33e76518bdc80064f3c16.zip
git-e289f681ede1aad2ded33e76518bdc80064f3c16.tar.gz
git-e289f681ede1aad2ded33e76518bdc80064f3c16.tar.bz2
Merge branch 'jk/p4-locate-branch-point-optim'
"git p4" learned to find branch points more efficiently. * jk/p4-locate-branch-point-optim: git-p4: speed up search for branch parent git-p4: ensure complex branches are cloned correctly
Diffstat (limited to 't')
-rwxr-xr-xt/t9801-git-p4-branch.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t9801-git-p4-branch.sh b/t/t9801-git-p4-branch.sh
index ff94c3f..50a6f8b 100755
--- a/t/t9801-git-p4-branch.sh
+++ b/t/t9801-git-p4-branch.sh
@@ -294,11 +294,13 @@ test_expect_success 'git p4 clone complex branches' '
test_path_is_file file3 &&
grep update file2 &&
git reset --hard p4/depot/branch4 &&
+ git diff-tree --quiet HEAD &&
test_path_is_file file1 &&
test_path_is_file file2 &&
test_path_is_missing file3 &&
! grep update file2 &&
git reset --hard p4/depot/branch5 &&
+ git diff-tree --quiet HEAD &&
test_path_is_file file1 &&
test_path_is_file file2 &&
test_path_is_file file3 &&