mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
845d4d43c7
Signed-off-by: Jeremy Allison <jra@samba.org>
12 lines
279 B
Bash
Executable File
12 lines
279 B
Bash
Executable File
#!/bin/sh
|
|
|
|
WBINFO="$VALGRIND ${NET:-$BINDIR/wbinfo} $CONFIGURATION"
|
|
TEST_INT=`dirname $0`/test_wbinfo_sids2xids_int.py
|
|
|
|
incdir=`dirname $0`/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
testit "sids2xids" ${TEST_INT} ${WBINFO} || failed=`expr $failed + 1`
|
|
|
|
testok $0 $failed
|