diff options
Diffstat (limited to 'source3/script/tests')
-rwxr-xr-x | source3/script/tests/test_ntlm_auth_s3.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/tests/test_ntlm_auth_s3.sh b/source3/script/tests/test_ntlm_auth_s3.sh index 8568da97e4..6a52e59771 100755 --- a/source3/script/tests/test_ntlm_auth_s3.sh +++ b/source3/script/tests/test_ntlm_auth_s3.sh @@ -5,9 +5,9 @@ incdir=`dirname $0` failed=0 -(/usr/bin/env python --version > /dev/null 2&>1) +(/usr/bin/env python --version > /dev/null 2>&1) -if $? -ne 0: +if test $? -ne 0; then echo "Python binary not found in path. Skipping ntlm_auth tests." exit 0 |