3 test_description
='git reflog --updateref'
5 TEST_PASSES_SANITIZE_LEAK
=true
8 test_expect_success
'setup' '
9 git init -b main repo &&
17 git reflog HEAD >expect &&
18 git reset --hard HEAD~ &&
19 # Make sure that the reflog does not point to the same commit
21 git reflog delete HEAD@{0} &&
22 git reflog HEAD >actual &&
23 test_cmp expect actual
27 test_reflog_updateref
() {
32 test_expect_success
"get '$exp' with '$args'" '
33 test_when_finished "rm -rf copy" &&
40 git rev-parse $exp >expect &&
41 git rev-parse HEAD >actual &&
43 test_cmp expect actual
48 test_reflog_updateref B git reflog delete
--updateref HEAD@
{0}
49 test_reflog_updateref B git reflog delete
--updateref HEAD@
{1}
50 test_reflog_updateref C git reflog delete
--updateref main@
{0}
51 test_reflog_updateref B git reflog delete
--updateref main@
{1}
52 test_reflog_updateref B git reflog delete
--updateref --rewrite HEAD@
{0}
53 test_reflog_updateref B git reflog delete
--updateref --rewrite HEAD@
{1}
54 test_reflog_updateref C git reflog delete
--updateref --rewrite main@
{0}
55 test_reflog_updateref B git reflog delete
--updateref --rewrite main@
{1}
56 test_reflog_updateref B test_must_fail git reflog expire HEAD@
{0}
57 test_reflog_updateref B test_must_fail git reflog expire HEAD@
{1}
58 test_reflog_updateref B test_must_fail git reflog expire main@
{0}
59 test_reflog_updateref B test_must_fail git reflog expire main@
{1}
60 test_reflog_updateref B test_must_fail git reflog expire
--updateref HEAD@
{0}
61 test_reflog_updateref B test_must_fail git reflog expire
--updateref HEAD@
{1}
62 test_reflog_updateref B test_must_fail git reflog expire
--updateref main@
{0}
63 test_reflog_updateref B test_must_fail git reflog expire
--updateref main@
{1}
64 test_reflog_updateref B test_must_fail git reflog expire
--updateref --rewrite HEAD@
{0}
65 test_reflog_updateref B test_must_fail git reflog expire
--updateref --rewrite HEAD@
{1}
66 test_reflog_updateref B test_must_fail git reflog expire
--updateref --rewrite main@
{0}
67 test_reflog_updateref B test_must_fail git reflog expire
--updateref --rewrite main@
{1}