1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00
samba-mirror/source3/script/tests/test_pthreadpool.sh
Andreas Schneider 3b6558d4e3 s3:tests: Reformat test_pthreadpool.sh
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>
2022-06-08 13:14:47 +00:00

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