1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/selftest/target/Windows.pm
2008-09-18 19:51:03 +02: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;