mirror of
https://github.com/samba-team/samba.git
synced 2025-03-11 16:58:40 +03:00
21 lines
345 B
Bash
Executable File
21 lines
345 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -ne 0 ]; then
|
|
cat <<EOF
|
|
Usage: test_swig.sh
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
incdir=`dirname $0`
|
|
. $incdir/test_functions.sh
|
|
|
|
failed=0
|
|
|
|
export PYTHONPATH=scripting/swig:$PYTHONPATH
|
|
|
|
scripting/swig/torture/torture_tdb.py || failed=`expr $failed + 1`
|
|
scripting/swig/torture/torture_ldb.py || failed=`expr $failed + 1`
|
|
|
|
testok $0 $failed
|