docs: Document parametric form of hide and veto files
[Samba.git] / source3 / script / tests / test_local_s3.sh
blob9de542a7530d249930d30be53189085fa4266853
1 #!/bin/sh
3 # this runs the file serving tests that are expected to pass with samba3
5 if [ $# != 0 ]; then
6 cat <<EOF
7 Usage: test_local_s3.sh
8 EOF
9 exit 1
12 incdir=$(dirname $0)/../../../testprogs/blackbox
13 . $incdir/subunit.sh
15 failed=0
17 cd $SELFTEST_TMPDIR || exit 1
19 if test -x $BINDIR/talloctort; then
20 testit "talloctort" $VALGRIND $BINDIR/talloctort ||
21 failed=$(expr $failed + 1)
22 else
23 echo "Skipping talloctort"
26 testit "replace_testsuite" $VALGRIND $BINDIR/replace_testsuite ||
27 failed=$(expr $failed + 1)
29 if test -x $BINDIR/tdbtorture; then
30 testit "tdbtorture" $VALGRIND $BINDIR/tdbtorture ||
31 failed=$(expr $failed + 1)
32 else
33 echo "Skipping tdbtorture"
36 testit "smbconftort" $VALGRIND $BINDIR/smbconftort $CONFIGURATION ||
37 failed=$(expr $failed + 1)
39 testok $0 $failed