diff options
author | Michael Adam <obnox@samba.org> | 2008-01-13 23:54:48 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-13 23:54:48 +0100 |
commit | 971abee49014c78fc5990225a130e1671ed776fd (patch) | |
tree | 9aae40fb5b15f1aea78e211a4b3466d6b6bd872a /source3/script | |
parent | 801eeaec09f9a53759185a834f42e3d266ec4bce (diff) | |
download | samba-971abee49014c78fc5990225a130e1671ed776fd.tar.gz samba-971abee49014c78fc5990225a130e1671ed776fd.tar.bz2 samba-971abee49014c78fc5990225a130e1671ed776fd.zip |
Fix a syntax error in script/tests/test_local_s3.sh .
This will reveal the currently breaking tdbtorture to the build farm...
Michael
(This used to be commit 50f65c3c5500da8d657d5fc340e666ee8cfe148e)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/test_local_s3.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/test_local_s3.sh b/source3/script/tests/test_local_s3.sh index 6117106c8a..fd8f98ccab 100755 --- a/source3/script/tests/test_local_s3.sh +++ b/source3/script/tests/test_local_s3.sh @@ -21,6 +21,6 @@ testit "replacetort" $VALGRIND $BINDIR/replacetort || \ failed=`expr $failed + 1` testit "tdbtorture" $VALGRIND $BINDIR/tdbtorture || \ - failed=`expr $failed +1` + failed=`expr $failed + 1` testok $0 $failed |