source: vendor/current/source3/script/tests/test_local_s3.sh@ 988

Last change on this file since 988 was 988, checked in by Silvan Scherrer, 8 years ago

Samba Server: update vendor to version 4.4.3

File size: 747 bytes
Line 
1#!/bin/sh
2
3# this runs the file serving tests that are expected to pass with samba3
4
5if [ $# != 0 ]; then
6cat <<EOF
7Usage: test_local_s3.sh
8EOF
9exit 1;
10fi
11
12incdir=`dirname $0`/../../../testprogs/blackbox
13. $incdir/subunit.sh
14
15failed=0
16
17
18if test -x bin/talloctort ; then
19 testit "talloctort" $VALGRIND $BINDIR/talloctort || \
20 failed=`expr $failed + 1`
21else
22 echo "Skipping talloctort"
23fi
24
25testit "replacetort" $VALGRIND $BINDIR/replacetort || \
26 failed=`expr $failed + 1`
27
28if test -x bin/tdbtorture ; then
29 testit "tdbtorture" $VALGRIND $BINDIR/tdbtorture || \
30 failed=`expr $failed + 1`
31else
32 echo "Skipping tdbtorture"
33fi
34
35testit "smbconftort" $VALGRIND $BINDIR/smbconftort $CONFIGURATION || \
36 failed=`expr $failed + 1`
37
38testok $0 $failed
Note: See TracBrowser for help on using the repository browser.