t9402: Simplify git ls-tree
authorTorsten Bögershausen <tboegi@web.de>
Sat, 8 Dec 2012 21:35:06 +0000 (22:35 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 9 Dec 2012 09:37:52 +0000 (01:37 -0800)
Use "git ls-tree --name-only" which does not need a sed to filter out the sha

Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9402-git-cvsserver-refs.sh

index c15abde3b82e4127f6aa34fc511299771d206708..7953ffccc6834866a04d0a347841d592d013db59 100755 (executable)
@@ -41,7 +41,7 @@ check_end_full_tree() {
     sort <"$WORKDIR/check.list" >expected &&
     find "$sandbox" -name CVS -prune -o -type f -print | sed -e "s%$sandbox/%%" | sort >act1 &&
                test_cmp expected act1 &&
-    git ls-tree -r "$2" | sed -e "s/^.*blob [0-9a-fA-F]*[       ]*//" | sort >act2 &&
+    git ls-tree --name-only -r "$2" | sort >act2 &&
                test_cmp expected act2 &&
     rm expected act1 act2
 }