changeset 7349:f711b8e0d2b3

fix test-export portability (issue1383) wc outputs with leading spaces on *BSD
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Sun, 09 Nov 2008 12:15:32 +0100
parents 1a5c9ca2bfd5
children c5dbe86b0fee
files tests/test-export
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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/^ *//'