diff options
author | Gerald Carter <jerry@samba.org> | 2006-01-18 04:44:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:09 -0500 |
commit | e2de656314c8d50bfd5f14b24826a2df962fe704 (patch) | |
tree | 85a6b4bd78aa9c092748a07aa394e99ce376089e /source3/script/tests/functions | |
parent | c42be9fd38556a1cc2e16c8d763a592beb863806 (diff) | |
download | samba-e2de656314c8d50bfd5f14b24826a2df962fe704.tar.gz samba-e2de656314c8d50bfd5f14b24826a2df962fe704.tar.bz2 samba-e2de656314c8d50bfd5f14b24826a2df962fe704.zip |
r12990: BUG 3329: patch from David May <mayd@cygnus.uwa.edu.au> for Solaris shell script portability issues in 'make test'
(This used to be commit 19339a9510467b4b2cf3889bc6a08563cdc940f4)
Diffstat (limited to 'source3/script/tests/functions')
-rw-r--r-- | source3/script/tests/functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/tests/functions b/source3/script/tests/functions index 40e185e153..8cb8f0b155 100644 --- a/source3/script/tests/functions +++ b/source3/script/tests/functions @@ -34,7 +34,7 @@ stop_smbd() ## check to see if smbd is already running check_smbd_running - if test $? == 0; then + if test $? = 0; then echo "Unable to stop smbd!" exit 2 fi @@ -74,7 +74,7 @@ stop_nmbd() ## check to see if smbd is already running kill -0 $nmbd_pid 2> /dev/null - if test $? == 0; then + if test $? = 0; then echo "Unable to stop nmbd!" exit 2 fi |