Mercurial > hg
changeset 1952:f4df34b6987f
tests: fix portability issue for echo -n
author | TK Soh <teekaysoh@yahoo.com> |
---|---|
date | Tue, 14 Mar 2006 21:42:32 -0800 |
parents | 696230e52e4d |
children | 34d0e2e559ff 16750010813d |
files | tests/run-tests |
diffstat | 1 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/run-tests Tue Mar 14 21:40:46 2006 -0800 +++ b/tests/run-tests Tue Mar 14 21:42:32 2006 -0800 @@ -20,8 +20,14 @@ HGUSER="test"; export HGUSER HGRCPATH=""; export HGRCPATH -ECHO_N="echo -n" -[ -x /usr/ucb/echo ] && ECHO_N="/usr/ucb/echo -n" +if [ `echo -n HG` == "-n HG" ] +then + ECHO_N=echo + NNL="\c" +else + ECHO_N="echo -n" + NNL= +fi umask 022 @@ -139,7 +145,7 @@ fi for f in $TESTS ; do - $ECHO_N "." + $ECHO_N ".${NNL}" run_one $f || failed=`expr $failed + 1` tests=`expr $tests + 1` done