mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
a3d0655ee0
shfmt -f source3/script/| xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
15 lines
288 B
Bash
Executable File
15 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
|
|
incdir=$(dirname $0)/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
failed=0
|
|
|
|
SOCKET_WRAPPER_IPV4_NETWORK="127.0.0.0"
|
|
export SOCKET_WRAPPER_IPV4_NETWORK
|
|
|
|
testit "async_connect_send" $VALGRIND $BINDIR/async_connect_send_test ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
testok $0 $failed
|