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 <dstolee@microsoft.com>2022-04-26 23:43:16 +0300
committerJunio C Hamano <gitster@pobox.com>2022-04-26 23:56:38 +0300
commita9e0a49dc427a8c442619e7937abeb1af1f35ff2 (patch)
tree60784a2137362f42d243e0ff3bd6552200a065e2 /t/t1092-sparse-checkout-compatibility.sh
parent6cd33dceed60949e2dbc32e3f0f5e67c4c882e1e (diff)
t1092: add compatibility tests for 'git show'
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.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/t1092-sparse-checkout-compatibility.sh b/t/t1092-sparse-checkout-compatibility.sh
index 236ab53028..74792b5ebb 100755
--- a/t/t1092-sparse-checkout-compatibility.sh
+++ b/t/t1092-sparse-checkout-compatibility.sh
@@ -1151,6 +1151,22 @@ test_expect_success 'clean' '
test_sparse_match test_path_is_dir folder1
'
+test_expect_success 'show (cached blobs/trees)' '
+ init_repos &&
+
+ test_all_match git show :a &&
+ test_all_match git show :deep/a &&
+ test_sparse_match git show :folder1/a &&
+
+ # Asking "git show" for directories in the index
+ # does not work as implemented. The error message is
+ # different for a full checkout and a sparse checkout
+ # when the directory is outside of the cone.
+ test_all_match test_must_fail git show :deep/ &&
+ test_must_fail git -C full-checkout show :folder1/ &&
+ test_sparse_match test_must_fail git show :folder1/
+'
+
test_expect_success 'submodule handling' '
init_repos &&