Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrick Stolee <derrickstolee@github.com>2022-04-26 23:43:18 +0300
committerJunio C Hamano <gitster@pobox.com>2022-04-26 23:56:38 +0300
commit561287d342cc55205b6cac33415ed96a6f112558 (patch)
tree6c7ad70d7af29fc33da7dea511bf2070971518f6 /t/t1092-sparse-checkout-compatibility.sh
parenta37d14422a4edd4f95abbe9532f518127cd3ef69 (diff)
object-name: reject trees found in the index
The get_oid_with_context_1() method is used when parsing revision arguments. One particular case is to take a ":<path>" string and search the index for the given path. In the case of a sparse index, this might find a sparse directory entry, in which case the contained object is a tree. In the case of a full index, this search within the index would fail. In order to maintain identical return state as in a full index, inspect the discovered cache entry to see if it is a sparse directory and reject it. This requires being careful around the only_to_die option to be sure we die only at the correct time. This changes the behavior of 'git show :<sparse-dir>', but does not bring it entirely into alignment with a full index case. It specifically hits the wrong error message within diagnose_invalid_index_path(). That error message will be corrected in a future change. Signed-off-by: Derrick Stolee <derrickstolee@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1092-sparse-checkout-compatibility.sh')
-rwxr-xr-xt/t1092-sparse-checkout-compatibility.sh11
1 files changed, 2 insertions, 9 deletions
diff --git a/t/t1092-sparse-checkout-compatibility.sh b/t/t1092-sparse-checkout-compatibility.sh
index 3506c0216f..08c9cfd359 100755
--- a/t/t1092-sparse-checkout-compatibility.sh
+++ b/t/t1092-sparse-checkout-compatibility.sh
@@ -1165,15 +1165,8 @@ test_expect_success 'show (cached blobs/trees)' '
test_must_fail git -C full-checkout show :folder1/ &&
test_must_fail git -C sparse-checkout show :folder1/ &&
- git -C sparse-index show :folder1/ >actual &&
- git -C full-checkout show HEAD:folder1 >expect &&
-
- # The output of "git show" includes the way we referenced the
- # objects, so strip that out.
- test_line_count = 4 actual &&
- tail -n 2 actual >actual-trunc &&
- tail -n 2 expect >expect-trunc &&
- test_cmp expect-trunc actual-trunc
+ test_must_fail git -C sparse-index show :folder1/ 2>err &&
+ grep "is in the index, but not at stage 0" err
'
test_expect_success 'submodule handling' '