aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-01-06 16:33:52 +0900
committerJunio C Hamano <gitster@pobox.com>2026-01-06 16:33:52 +0900
commit1627809eeff75e6ec936fc609e7be46d5eb2fa9e (patch)
treeeaf584036dc67789433fca1cb7f81595407907b6 /t
parentb39aad0b0d8f4c6b12c7a057f0c6f3e0cce7c506 (diff)
parentabf05d856f50fbd8f0390b31e7187d78930dbaf5 (diff)
downloadgit-1627809eeff75e6ec936fc609e7be46d5eb2fa9e.tar.xz
Merge branch 'rs/show-branch-prio-queue'
Code clean-up. * rs/show-branch-prio-queue: show-branch: use prio_queue
Diffstat (limited to 't')
-rwxr-xr-xt/perf/p6010-merge-base.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/t/perf/p6010-merge-base.sh b/t/perf/p6010-merge-base.sh
index 54f52fa23e..08212dd037 100755
--- a/t/perf/p6010-merge-base.sh
+++ b/t/perf/p6010-merge-base.sh
@@ -83,9 +83,9 @@ build_history2 () {
test_expect_success 'setup' '
max_level=15 &&
build_history $max_level | git fast-import --export-marks=marks &&
- git tag one &&
+ git branch one &&
build_history2 $max_level | git fast-import --import-marks=marks --force &&
- git tag two &&
+ git branch two &&
git gc &&
git log --format=%H --no-merges >expect
'
@@ -98,4 +98,8 @@ test_expect_success 'verify result' '
test_cmp expect actual
'
+test_perf 'git show-branch' '
+ git show-branch one two
+'
+
test_done