mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
1e84e4026e
as discussed with jelmer and abartlet metze (This used to be commit e9fe3c40e10accb63d7a2124d3a7e77e499c4209)
21 lines
381 B
Bash
Executable File
21 lines
381 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
|
|
|
|
export PYTHONPATH=lib/tdb/swig:lib/ldb/swig:scripting/swig:$PYTHONPATH
|
|
export LD_LIBRARY_PATH=bin:$LD_LIBRARY_PATH
|
|
|
|
echo Testing tdb wrappers
|
|
scripting/swig/torture/torture_tdb.py
|
|
|
|
echo Testing ldb wrappers
|
|
scripting/swig/torture/torture_ldb.py
|