diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2021-05-31 16:56:32 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-06-02 10:01:55 +0900 |
commit | a5709636d9958b78ed6cd708ac1c5f80f4b9dc91 (patch) | |
tree | 39705432dba0cc6e53b2e6410b1d7dab45629a20 | |
parent | t1414: mark corruption test with REFFILES (diff) | |
download | tgif-a5709636d9958b78ed6cd708ac1c5f80f4b9dc91.tar.xz |
t2017: mark --orphan/logAllRefUpdates=false test as REFFILES
In reftable, there is no notion of a per-ref 'existence' of a reflog. Each
reflog entry has its own key, so it is not possible to distinguish between
{reflog doesn't exist,reflog exists but is empty}. This makes the logic
in log_ref_setup() (file refs/files-backend.c), which depends on the existence
of the reflog file infeasible.
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Reviewed-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t2017-checkout-orphan.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t2017-checkout-orphan.sh b/t/t2017-checkout-orphan.sh index c7adbdd39a..88d6992a5e 100755 --- a/t/t2017-checkout-orphan.sh +++ b/t/t2017-checkout-orphan.sh @@ -76,7 +76,7 @@ test_expect_success '--orphan makes reflog by default' ' git rev-parse --verify delta@{0} ' -test_expect_success '--orphan does not make reflog when core.logAllRefUpdates = false' ' +test_expect_success REFFILES '--orphan does not make reflog when core.logAllRefUpdates = false' ' git checkout main && git config core.logAllRefUpdates false && git checkout --orphan epsilon && |