summaryrefslogtreecommitdiff
path: root/selftest/target/Windows.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-09-18 19:51:03 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-09-18 19:51:03 +0200
commit182a0e349082fd43ec410cd6ac512376748fa27d (patch)
tree77780338f77b52287ca635d7aaacc46f846522a0 /selftest/target/Windows.pm
parentcb16488cb1bc29657a024a74c21b33445cde87b0 (diff)
downloadsamba-182a0e349082fd43ec410cd6ac512376748fa27d.tar.gz
samba-182a0e349082fd43ec410cd6ac512376748fa27d.tar.bz2
samba-182a0e349082fd43ec410cd6ac512376748fa27d.zip
Move selftest code to top-level.
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;