Skip to content

Commit

Permalink
aaand solaris echo doesn't support the advanced -n parameter
Browse files Browse the repository at this point in the history
so use printf
  • Loading branch information
anttikantee committed Jan 13, 2014
1 parent 6ce9c1f commit 59bf9c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/testrump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ TESTOBJ=${OBJDIR}/brtests
dosimpleclient ()
{

echo -n Remote communication ...
printf 'Remote communication ... '
export RUMP_SERVER="unix://mysocket"
${DESTDIR}/bin/rump_server "${RUMP_SERVER}" || die rump_server failed
./simpleclient || die simpleclient failed
Expand All @@ -36,15 +36,15 @@ dofstest ()
dofstest_img ()
{

echo -n VFS test with actual file system ...
printf 'VFS test with actual file system ... '
./fstest2 ${TESTDIR}/fstest_img || die fstest2 failed
echo done
}

donettest_simple ()
{

echo -n IPv4 networking test ...
printf 'IPv4 networking test ... '
rm -f busmem
./nettest_simple server || die nettest server failed
./nettest_simple client || die nettest client failed
Expand All @@ -54,7 +54,7 @@ donettest_simple ()
donettest_simple6 ()
{

echo -n IPv6 networking test ...
printf 'IPv6 networking test ... '
rm -f busmem
./nettest_simple6 server6 || die nettest server6 failed
./nettest_simple6 client6 || die nettest client6 failed
Expand All @@ -64,7 +64,7 @@ donettest_simple6 ()
donettest_routed ()
{

echo -n Routed IPv4 networking test ...
printf 'Routed IPv4 networking test ... '

rm -f net1 net2
./nettest_routed server || die nettest server failed
Expand Down

0 comments on commit 59bf9c5

Please sign in to comment.