1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source3/script/tests/test_pthreadpool.sh
Volker Lendecke 40e0079bae s3: Some build farm machines do not have /bin/true
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Mon Apr 25 14:35:42 CEST 2011 on sn-devel-104
2011-04-25 14:35:42 +02:00

21 lines
393 B
Bash
Executable File

#!/bin/sh
incdir=`dirname $0`/../../../testprogs/blackbox
. $incdir/subunit.sh
if [ ! -x $BINDIR/pthreadpooltest ] ; then
# Some machines don't have /bin/true, simulate it
cat >$BINDIR/pthreadpooltest <<EOF
#!/bin/sh
exit 0
EOF
chmod +x $BINDIR/pthreadpooltest
fi
failed=0
testit "pthreadpool" $VALGRIND $BINDIR/pthreadpooltest ||
failed=`expr $failed + 1`
testok $0 $failed