2 # Bootstrap Samba and run a number of tests against it.
3 # Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
4 # Published under the GNU GPL, v3 or later.
9 use FindBin
qw($RealBin);
22 my ($self, $environment, $prefix) = @_;
24 die ("Windows tests will not run without root privileges.")
25 if (`whoami` ne "root");
27 die("Environment variable WINTESTCONF has not been defined.\n".
28 "Windows tests will not run unconfigured.") if (not defined($ENV{WINTESTCONF}));
30 die ("$ENV{WINTESTCONF} could not be read.") if (! -r $ENV{WINTESTCONF});
32 $ENV{WINTEST_DIR}="$ENV{SRCDIR}/selftest/win";
37 my ($self, $name) = @_;