From 582e224af5e55909e4dfd4051f2e5b5011ec14e1 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Wed, 30 Jan 2008 16:59:40 +0100 Subject: [PATCH] ntlm_auth: Fix typos in the torture test script. This should fix the build farm. Sorry, wonder why it worked on my box before. (This used to be commit bfa919cde57a26cd2ae7397281923792b7afe83a) --- source3/script/tests/test_ntlm_auth_s3.sh | 4 ++-- 1 file 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 8568da97e4d..6a52e59771d 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 -- 2.34.1