diff options
Diffstat (limited to 'source3/script/tests/test_local_s3.sh')
-rwxr-xr-x | source3/script/tests/test_local_s3.sh | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/source3/script/tests/test_local_s3.sh b/source3/script/tests/test_local_s3.sh index 6117106c8a..f016e5d28f 100755 --- a/source3/script/tests/test_local_s3.sh +++ b/source3/script/tests/test_local_s3.sh @@ -2,25 +2,11 @@ # this runs the file serving tests that are expected to pass with samba3 -if [ $# != 0 ]; then -cat <<EOF -Usage: test_local_s3.sh -EOF -exit 1; -fi - incdir=`dirname $0` . $incdir/test_functions.sh -failed=0 - -testit "talloctort" $VALGRIND $BINDIR/talloctort || \ - failed=`expr $failed + 1` - -testit "replacetort" $VALGRIND $BINDIR/replacetort || \ - failed=`expr $failed + 1` - -testit "tdbtorture" $VALGRIND $BINDIR/tdbtorture || \ - failed=`expr $failed +1` +BINDIR=$incdir/../../bin -testok $0 $failed +plantest "talloctort" none $VALGRIND $BINDIR/talloctort +plantest "replacetort" none $VALGRIND $BINDIR/replacetort +plantest "tdbtorture" none $VALGRIND $BINDIR/tdbtorture |