blob: 5c3c81b1eb6332e9fdc5fb9ca43be0a27f5f744c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh
if [ `whoami` != "root" ]; then
echo "Windows tests will not run without root privilages."
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/script/tests/win
export TMPDIR=$TMPDIR
export NETBIOSNAME=$NETBIOSNAME
. $WINTESTCONF
$SRCDIR/script/tests/test_win.sh
status=$?
echo "$0 exits with status $status"
exit $status
|