From 52b463917e0a08bacc15b5d242952ba31e6339af Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 1 Apr 2008 13:45:55 +0200 Subject: test: be more portable. replace 'echo -n' by 'printf "%s"' in test_functions.sh Michael (This used to be commit c0c41184277044eb856f91c025f645c198cac188) --- source3/script/tests/test_functions.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/script/tests/test_functions.sh b/source3/script/tests/test_functions.sh index d707c30960..407d46aa9e 100644 --- a/source3/script/tests/test_functions.sh +++ b/source3/script/tests/test_functions.sh @@ -42,7 +42,7 @@ samba3_check_or_start() { mkfifo $SERVER_TEST_FIFO rm -f $NMBD_TEST_LOG - echo -n "STARTING NMBD..." + printf "%s" "STARTING NMBD..." (( if test x"$NMBD_MAXTIME" = x; then NMBD_MAXTIME=2700 @@ -74,7 +74,7 @@ samba3_check_or_start() { echo "DONE" rm -f $WINBINDD_TEST_LOG - echo -n "STARTING WINBINDD..." + printf "%s" "STARTING WINBINDD..." (( if test x"$WINBINDD_MAXTIME" = x; then WINBINDD_MAXTIME=2700 @@ -106,7 +106,7 @@ samba3_check_or_start() { echo "DONE" rm -f $SMBD_TEST_LOG - echo -n "STARTING SMBD..." + printf "%s" "STARTING SMBD..." (( if test x"$SMBD_MAXTIME" = x; then SMBD_MAXTIME=2700 -- cgit