diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-08-30 02:15:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:35:00 -0500 |
commit | 0a5126fd1645ac17770fe4d513b66ed65b996c22 (patch) | |
tree | 0667c562c6ac688c528b3c87d8ebd5d9a2d4076f /source4/script/tests/test_functions.sh | |
parent | 5c6528336cecdb2d3f3316e6e73a78dcc0bc193a (diff) | |
download | samba-0a5126fd1645ac17770fe4d513b66ed65b996c22.tar.gz samba-0a5126fd1645ac17770fe4d513b66ed65b996c22.tar.bz2 samba-0a5126fd1645ac17770fe4d513b66ed65b996c22.zip |
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)
Diffstat (limited to 'source4/script/tests/test_functions.sh')
-rwxr-xr-x | source4/script/tests/test_functions.sh | 8 |
1 files changed, 4 insertions, 4 deletions
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; |