1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-31 17:18:04 +03:00
samba-mirror/source4/selftest/Windows.pm
Stefan Metzmacher 1e84e4026e r22575: move script/tests/ -> selftest/
as discussed with jelmer and abartlet

metze
(This used to be commit e9fe3c40e1)
2007-10-10 14:51:46 -05:00

41 lines
811 B
Perl

#!/usr/bin/perl
# Bootstrap Samba and run a number of tests against it.
# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
# Published under the GNU GPL, v3 or later.
package Windows;
use strict;
use FindBin qw($RealBin);
use POSIX;
sub new($)
{
my ($classname) = @_;
my $self = { };
bless $self;
return $self;
}
sub provision($$$)
{
my ($self, $environment, $prefix) = @_;
die ("Windows tests will not run without root privileges.")
if (`whoami` ne "root");
die("Environment variable WINTESTCONF has not been defined.\n".
"Windows tests will not run unconfigured.") if (not defined($ENV{WINTESTCONF}));
die ("$ENV{WINTESTCONF} could not be read.") if (! -r $ENV{WINTESTCONF});
$ENV{WINTEST_DIR}="$ENV{SRCDIR}/selftest/win";
}
sub setup_env($$)
{
my ($self, $name) = @_;
}
1;