diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-24 04:14:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:38 -0500 |
commit | e5f7da55ef778fdd904d6ff2a54d3d5e02debc17 (patch) | |
tree | 734d71dd6dc809f14560502ba5fa82138c4d660e /source4/script/tests/tests_win.sh | |
parent | b075bb842d6665be3212ddf93d4ccb98472f341a (diff) | |
download | samba-e5f7da55ef778fdd904d6ff2a54d3d5e02debc17.tar.gz samba-e5f7da55ef778fdd904d6ff2a54d3d5e02debc17.tar.bz2 samba-e5f7da55ef778fdd904d6ff2a54d3d5e02debc17.zip |
r17768: This merges in the current version of Brad Henry's windows testing
framework patch. There are some issues with the patch that I will
discuss in a separate email to the list, but given the low (zero?)
impact of the patch as it is, I think its better to integrate it now,
then let Brad send some minor update patches later
(This used to be commit 7232da0436ff1d84e419d268fee31a095bbb88b7)
Diffstat (limited to 'source4/script/tests/tests_win.sh')
-rw-r--r-- | source4/script/tests/tests_win.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/source4/script/tests/tests_win.sh b/source4/script/tests/tests_win.sh new file mode 100644 index 0000000000..6bb5fb90b7 --- /dev/null +++ b/source4/script/tests/tests_win.sh @@ -0,0 +1,29 @@ +#!/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 + + WINTEST_CONFFILE="$SRCDIR/script/tests/win/test_win.conf" + if [ ! -r $WINTEST_CONFFILE ]; then + echo "$WINTEST_CONFFILE could not be read." + exit 1 + fi + + export WINTEST_DIR=$SRCDIR/script/tests/win + export TMPDIR=$TMPDIR + export NETBIOSNAME=$NETBIOSNAME + + . $WINTEST_CONFFILE + + $SRCDIR/script/tests/test_win.sh + status=$? + + echo "$0 exits with status $status" + exit $status |