summaryrefslogtreecommitdiff
path: root/source3/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
commit52b463917e0a08bacc15b5d242952ba31e6339af (patch)
tree2a4948701286a4892d63d412fab4b7f89dd2d1ca /source3/script
parente61e4eb4e5ac5d3ea63549817b6973be693a49dd (diff)
downloadsamba-52b463917e0a08bacc15b5d242952ba31e6339af.tar.gz
samba-52b463917e0a08bacc15b5d242952ba31e6339af.tar.bz2
samba-52b463917e0a08bacc15b5d242952ba31e6339af.zip
test: be more portable. replace 'echo -n' by 'printf "%s"' in test_functions.sh
Michael (This used to be commit c0c41184277044eb856f91c025f645c198cac188)
Diffstat (limited to 'source3/script')
-rw-r--r--source3/script/tests/test_functions.sh6
1 files changed, 3 insertions, 3 deletions
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