summaryrefslogtreecommitdiffstats
path: root/source/script
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-01 13:45:55 +0200
committerMichael Adam <obnox@samba.org>2008-04-01 16:16:55 +0200
commitc0c41184277044eb856f91c025f645c198cac188 (patch)
tree8ab2e33199ac968e6dae8ea490b3356c62ef13ec /source/script
parentb6122406fe938fdaf373ff45214db79de06eb989 (diff)
downloadsamba-c0c41184277044eb856f91c025f645c198cac188.tar.gz
samba-c0c41184277044eb856f91c025f645c198cac188.tar.xz
samba-c0c41184277044eb856f91c025f645c198cac188.zip
test: be more portable. replace 'echo -n' by 'printf "%s"' in test_functions.sh
Michael
Diffstat (limited to 'source/script')
-rw-r--r--source/script/tests/test_functions.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/script/tests/test_functions.sh b/source/script/tests/test_functions.sh
index d707c309607..407d46aa9e2 100644
--- a/source/script/tests/test_functions.sh
+++ b/source/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