1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

test: be more portable. replace 'echo -n' by 'printf "%s"' in test_functions.sh

Michael
(This used to be commit c0c4118427)
This commit is contained in:
Michael Adam 2008-04-01 13:45:55 +02:00
parent e61e4eb4e5
commit 52b463917e

View File

@ -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