summaryrefslogtreecommitdiff
path: root/t/t5580-clone-push-unc.sh
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2019-02-25 14:17:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-05-07 09:40:01 (GMT)
commit397a46db786a53db5261a74232447f7b49574bba (patch)
treec2819e2f75817d62878c8f8d53841a35603e99c9 /t/t5580-clone-push-unc.sh
parentaeb582a98374c094361cba1bd756dc6307432c42 (diff)
downloadgit-397a46db786a53db5261a74232447f7b49574bba.zip
git-397a46db786a53db5261a74232447f7b49574bba.tar.gz
git-397a46db786a53db5261a74232447f7b49574bba.tar.bz2
t5580: verify that alternates can be UNC paths
On Windows, UNC paths are a very convenient way to share data, and alternates are all about sharing data. We fixed a bug where alternates specifying UNC paths were not handled properly, and it is high time that we add a regression test to ensure that this bug is not reintroduced. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5580-clone-push-unc.sh')
-rwxr-xr-xt/t5580-clone-push-unc.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t5580-clone-push-unc.sh b/t/t5580-clone-push-unc.sh
index 217adf3..b3c8a92 100755
--- a/t/t5580-clone-push-unc.sh
+++ b/t/t5580-clone-push-unc.sh
@@ -62,4 +62,16 @@ test_expect_success MINGW 'remote nick cannot contain backslashes' '
test_i18ngrep ! "unable to access" err
'
+test_expect_success 'unc alternates' '
+ tree="$(git rev-parse HEAD:)" &&
+ mkdir test-unc-alternate &&
+ (
+ cd test-unc-alternate &&
+ git init &&
+ test_must_fail git show $tree &&
+ echo "$UNCPATH/.git/objects" >.git/objects/info/alternates &&
+ git show $tree
+ )
+'
+
test_done