1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-02 20:23:50 +03:00
Files
samba-mirror/source/selftest/Windows.pm
Stefan Metzmacher e9fe3c40e1 r22575: move script/tests/ -> selftest/
as discussed with jelmer and abartlet

metze
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;