• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.0.25b/source/script/tests/
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`
13. $incdir/test_functions.sh
14
15failed=0
16
17testit "talloctort" $VALGRIND $BINDIR/talloctort || \
18    failed=`expr $failed + 1`
19
20testit "replacetort" $VALGRIND $BINDIR/replacetort || \
21    failed=`expr $failed + 1`
22
23testok $0 $failed
24