From 0a5126fd1645ac17770fe4d513b66ed65b996c22 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 30 Aug 2005 02:15:52 +0000 Subject: r9776: r11609@blu: tridge | 2005-08-30 12:20:11 +1000 make the selftest script a bit less existential (This used to be commit f8a17063a26487ea22caf0a3651f0ecee5d506df) --- source4/script/tests/test_functions.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4/script') diff --git a/source4/script/tests/test_functions.sh b/source4/script/tests/test_functions.sh index 3a206f9582..ddf81a1610 100755 --- a/source4/script/tests/test_functions.sh +++ b/source4/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; -- cgit