summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-08-30 02:15:52 +0000
committerAndrew Tridgell <tridge@samba.org>2005-08-30 02:15:52 +0000
commit772c594dc40d40d79d696040fc68ad93e327495c (patch)
tree704ef34fc82590a10ce633ad20407bea4c267882
parentea1b41713fdb47d246bb1a546ed35016a0f19c1f (diff)
downloadsamba-772c594dc40d40d79d696040fc68ad93e327495c.tar.gz
samba-772c594dc40d40d79d696040fc68ad93e327495c.tar.xz
samba-772c594dc40d40d79d696040fc68ad93e327495c.zip
r9776: r11609@blu: tridge | 2005-08-30 12:20:11 +1000
make the selftest script a bit less existential
-rwxr-xr-xsource/script/tests/test_functions.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/script/tests/test_functions.sh b/source/script/tests/test_functions.sh
index 3a206f9582c..ddf81a1610f 100755
--- a/source/script/tests/test_functions.sh
+++ b/source/script/tests/test_functions.sh
@@ -26,11 +26,11 @@ smbd_check_or_start() {
rm -f $SOCKET_WRAPPER_DIR/*
fi
if [ x"$ret" = x"0" ];then
- echo "smbd exists with status $ret";
- echo "smbd exists with status $ret" >>$SMBD_TEST_LOG;
+ echo "smbd exits with status $ret";
+ echo "smbd exits with status $ret" >>$SMBD_TEST_LOG;
elif [ x"$ret" = x"137" ];then
- echo "smbd got SIGXCPU and exists with status $ret!"
- echo "smbd got SIGXCPU and exists with status $ret!">>$SMBD_TEST_LOG;
+ echo "smbd got SIGXCPU and exits with status $ret!"
+ echo "smbd got SIGXCPU and exits with status $ret!">>$SMBD_TEST_LOG;
else
echo "smbd failed with status $ret!"
echo "smbd failed with status $ret!">>$SMBD_TEST_LOG;