mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
df29b9ab16
shfmt -f source4/selftest/ | xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
31 lines
618 B
Bash
Executable File
31 lines
618 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $(whoami) != "root" ]; then
|
|
echo "Windows tests will not run without root privileges."
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$DO_SOCKET_WRAPPER" = SOCKET_WRAPPER ]; then
|
|
echo "Windows tests will not run with socket wrapper enabled."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! $WINTESTCONF ]; then
|
|
echo "Environment variable WINTESTCONF has not been defined."
|
|
echo "Windows tests will not run unconfigured."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -r $WINTESTCONF ]; then
|
|
echo "$WINTESTCONF could not be read."
|
|
exit 1
|
|
fi
|
|
|
|
export WINTEST_DIR=$SRCDIR/selftest/win
|
|
export TMPDIR=$TMPDIR
|
|
export NETBIOSNAME=$NETBIOSNAME
|
|
|
|
. $WINTESTCONF
|
|
|
|
$SRCDIR/selftest/test_win.sh
|