summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-03-25 17:43:22 -0800
committerJunio C Hamano <junkio@cox.net>2006-03-25 17:43:22 -0800
commit48d6e97afe4dcce3bb01922b768cc4d831923e7f (patch)
treec5b1e7b23bc6ff1e6b6afc62ee826a46d06adc06 /t
parent88d9405600ece221306ac98db68c6bf756e1ff09 (diff)
parent4c691724f175573a2dc4118782744cb0e852ab41 (diff)
downloadgit-48d6e97afe4dcce3bb01922b768cc4d831923e7f.tar.gz
Merge branch 'rs/tar-tree' into next
* rs/tar-tree: tar-tree: Use the prefix field of a tar header tar-tree: Remove obsolete code tar-tree: Use write_entry() to write the archive contents tar-tree: Introduce write_entry() tar-tree: Use SHA1 of root tree for the basedir git-apply: safety fixes Removed bogus "<snap>" identifier. Clarify and expand some hook documentation. commit-tree: check return value from write_sha1_file() send-email: Identify author at the top when sending e-mail Format tweaks for asciidoc.
Diffstat (limited to 't')
-rwxr-xr-xt/t5000-tar-tree.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh
index adc5e937de..278eb66701 100755
--- a/t/t5000-tar-tree.sh
+++ b/t/t5000-tar-tree.sh
@@ -34,6 +34,9 @@ test_expect_success \
mkdir a/bin &&
cp /bin/sh a/bin &&
ln -s a a/l1 &&
+ (p=long_path_to_a_file && cd a &&
+ for depth in 1 2 3 4 5; do mkdir $p && cd $p; done &&
+ echo text >file_with_long_path) &&
(cd a && find .) | sort >a.lst'
test_expect_success \