aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-10-31 01:42:58 -0700
committerJunio C Hamano <gitster@pobox.com>2008-10-31 01:42:58 -0700
commit933bb3ae5e6c83288ec7c80c2282984f4927cb48 (patch)
treeddd8cba625475e53e370471f61ea0fcba2f64921 /t
parent797484392a823c66bd846545a43d76aa2c64f5ff (diff)
parente855bfc0404d3344787541c1bdaa1e8d44398eb3 (diff)
downloadgit-933bb3ae5e6c83288ec7c80c2282984f4927cb48.tar.gz
git-933bb3ae5e6c83288ec7c80c2282984f4927cb48.tar.xz
Merge branch 'maint'
* maint: git-svn: change dashed git-commit-tree to git commit-tree Documentation: clarify information about 'ident' attribute bash completion: add doubledash to "git show" Use test-chmtime -v instead of perl in t5000 to get mtime of a file Add --verbose|-v to test-chmtime asciidoc: add minor workaround to add an empty line after code blocks Plug a memleak in builtin-revert Add file delete/create info when we overflow rename_limit Install git-cvsserver in $(bindir) Install git-shell in bindir, too
Diffstat (limited to 't')
-rwxr-xr-xt/t5000-tar-tree.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh
index 0f27d7304..c942c8be8 100755
--- a/t/t5000-tar-tree.sh
+++ b/t/t5000-tar-tree.sh
@@ -90,7 +90,7 @@ test_expect_success \
'validate file modification time' \
'mkdir extract &&
"$TAR" xf b.tar -C extract a/a &&
- perl -e '\''print((stat("extract/a/a"))[9], "\n")'\'' >b.mtime &&
+ test-chmtime -v +0 extract/a/a |cut -f 1 >b.mtime &&
echo "1117231200" >expected.mtime &&
diff expected.mtime b.mtime'