mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
3b6558d4e3
shfmt -f source3/script/| xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
21 lines
385 B
Bash
Executable File
21 lines
385 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
|