Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t1407: make hash size independent
author
brian m. carlson
<sandals@crustytoothpaste.net>
Thu, 13 Sep 2018 05:17:41 +0000
(
05:17
+0000)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 17 Sep 2018 15:10:32 +0000
(08:10 -0700)
Instead of hard-coding a 40-based constant, split the output of
for-each-ref and for-each-reflog by field.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1407-worktree-ref-store.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
b1484ca
)
diff --git
a/t/t1407-worktree-ref-store.sh
b/t/t1407-worktree-ref-store.sh
index 4623ae15c4fd45df64b4acb94308e5ac4ca8f1f5..9a848581180ff73b41b345e448e427457b487ff7 100755
(executable)
--- a/
t/t1407-worktree-ref-store.sh
+++ b/
t/t1407-worktree-ref-store.sh
@@
-58,7
+58,7
@@
test_expect_success 'for_each_reflog()' '
mkdir -p .git/worktrees/wt/logs/refs/bisect &&
echo $ZERO_OID > .git/worktrees/wt/logs/refs/bisect/wt-random &&
- $RWT for-each-reflog | cut -
c 4
2- | sort >actual &&
+ $RWT for-each-reflog | cut -
d" " -f
2- | sort >actual &&
cat >expected <<-\EOF &&
HEAD 0x1
PSEUDO-WT 0x0
@@
-68,7
+68,7
@@
test_expect_success 'for_each_reflog()' '
EOF
test_cmp expected actual &&
- $RMAIN for-each-reflog | cut -
c 4
2- | sort >actual &&
+ $RMAIN for-each-reflog | cut -
d" " -f
2- | sort >actual &&
cat >expected <<-\EOF &&
HEAD 0x1
PSEUDO-MAIN 0x0