summaryrefslogtreecommitdiff
path: root/selftest/target/Windows.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-19 10:45:25 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-19 10:45:25 +0200
commit2c8cf0b394e8625017a1290f73d0007d3b5b6d20 (patch)
tree9d63288e05bbc7b8d8f75b8373884ce7613ba305 /selftest/target/Windows.pm
parentc484b0465c8c2298c8d439677412f34e6bdd17f1 (diff)
parent694a579cb8d418a4feb441a77c0dc000023f2c6e (diff)
downloadsamba-2c8cf0b394e8625017a1290f73d0007d3b5b6d20.tar.gz
samba-2c8cf0b394e8625017a1290f73d0007d3b5b6d20.tar.bz2
samba-2c8cf0b394e8625017a1290f73d0007d3b5b6d20.zip
Merge branch 'master' of ssh://git.samba.org/data/git/samba into strhex
Diffstat (limited to 'selftest/target/Windows.pm')
-rw-r--r--selftest/target/Windows.pm40
1 files changed, 40 insertions, 0 deletions
diff --git a/selftest/target/Windows.pm b/selftest/target/Windows.pm
new file mode 100644
index 0000000000..d0c90d7f7b
--- /dev/null
+++ b/selftest/target/Windows.pm
@@ -0,0 +1,40 @@
+#!/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;