|
Last change
on this file since 482 was 206, checked in by Herwig Bauernfeind, 17 years ago |
|
Import Samba 3.3 branch at 3.0.0 level (psmedley's port)
|
|
File size:
589 bytes
|
| Line | |
|---|
| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # this runs the file serving tests that are expected to pass with samba3
|
|---|
| 4 |
|
|---|
| 5 | if [ $# != 0 ]; then
|
|---|
| 6 | cat <<EOF
|
|---|
| 7 | Usage: test_local_s3.sh
|
|---|
| 8 | EOF
|
|---|
| 9 | exit 1;
|
|---|
| 10 | fi
|
|---|
| 11 |
|
|---|
| 12 | incdir=`dirname $0`
|
|---|
| 13 | . $incdir/test_functions.sh
|
|---|
| 14 |
|
|---|
| 15 | failed=0
|
|---|
| 16 |
|
|---|
| 17 | testit "talloctort" $VALGRIND $BINDIR/talloctort || \
|
|---|
| 18 | failed=`expr $failed + 1`
|
|---|
| 19 |
|
|---|
| 20 | testit "replacetort" $VALGRIND $BINDIR/replacetort || \
|
|---|
| 21 | failed=`expr $failed + 1`
|
|---|
| 22 |
|
|---|
| 23 | testit "tdbtorture" $VALGRIND $BINDIR/tdbtorture || \
|
|---|
| 24 | failed=`expr $failed + 1`
|
|---|
| 25 |
|
|---|
| 26 | testit "smbconftort" $VALGRIND $BINDIR/smbconftort $CONFIGURATION || \
|
|---|
| 27 | failed=`expr $failed + 1`
|
|---|
| 28 |
|
|---|
| 29 | testok $0 $failed
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.