diff options
author | Michael Adam <obnox@samba.org> | 2008-07-21 11:17:36 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-07-21 11:17:36 +0200 |
commit | eac08b0fc5ef4fc4efc9f84910280b0a628276ee (patch) | |
tree | 9eb686b649089a6396582a50d0a4c389b59f2c1c /source3/script | |
parent | a197e2571331af804d4025535bb660ecc06ca008 (diff) | |
download | samba-eac08b0fc5ef4fc4efc9f84910280b0a628276ee.tar.gz samba-eac08b0fc5ef4fc4efc9f84910280b0a628276ee.tar.bz2 samba-eac08b0fc5ef4fc4efc9f84910280b0a628276ee.zip |
testsuite: fix another expr syntax error. in tests_all.sh.
Michael
(This used to be commit 486b1bc5b5021565ec443fd463c8287c02c686b3)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/tests_all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/tests_all.sh b/source3/script/tests/tests_all.sh index e44ec8b3c4..ffe1c91284 100755 --- a/source3/script/tests/tests_all.sh +++ b/source3/script/tests/tests_all.sh @@ -51,7 +51,7 @@ net_s3() { testparm_s3() { echo "RUNNING TESTS testparm_s3" $SCRIPTDIR/test_testparm_s3.sh \ - || failed=`expr $failed +$?` + || failed=`expr $failed + $?` } posix_s3() { |