fix test-export portability (issue1383)
authorBenoit Boissinot <benoit.boissinot@ens-lyon.org>
Sun, 09 Nov 2008 12:15:32 +0100
changeset 7349 f711b8e0d2b3
parent 7348 1a5c9ca2bfd5
child 7350 c5dbe86b0fee
fix test-export portability (issue1383) wc outputs with leading spaces on *BSD
tests/test-export
--- a/tests/test-export	Sat Nov 08 00:29:04 2008 +0100
+++ b/tests/test-export	Sun Nov 09 12:15:32 2008 +0100
@@ -16,6 +16,6 @@
 
 echo "# exporting 4 changesets to a file"
 hg export -o export_internal 1 2 3 4
-grep HG export_internal | wc -l
+grep HG export_internal | wc -l | sed -e 's/^ *//'
 echo "# exporting 4 changesets to a file"
-hg export 1 2 3 4 | grep HG | wc -l
+hg export 1 2 3 4 | grep HG | wc -l | sed -e 's/^ *//'