summaryrefslogtreecommitdiff
path: root/selftest/tests.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-09-27 09:41:32 -0700
committerJelmer Vernooij <jelmer@samba.org>2012-09-27 20:26:27 +0200
commitb7822a55c40c5c42356b263c3d7bc1998fb1a7d3 (patch)
tree2579d3c13e232e533c647b5f80325de0380ca74f /selftest/tests.py
parent0883e174bfdec22a4ff373041afce396cfe7fd7b (diff)
downloadsamba-b7822a55c40c5c42356b263c3d7bc1998fb1a7d3.tar.gz
samba-b7822a55c40c5c42356b263c3d7bc1998fb1a7d3.tar.bz2
samba-b7822a55c40c5c42356b263c3d7bc1998fb1a7d3.zip
samba4-tests: Move 'samba.tests.source' up.
We would like to run this as early as possible so we get a quick failure when there is trailing whitespace. Autobuild-User(master): Jelmer Vernooij <jelmer@samba.org> Autobuild-Date(master): Thu Sep 27 20:26:27 CEST 2012 on sn-devel-104
Diffstat (limited to 'selftest/tests.py')
-rw-r--r--selftest/tests.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/selftest/tests.py b/selftest/tests.py
new file mode 100644
index 0000000000..506ed73aab
--- /dev/null
+++ b/selftest/tests.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+# This script generates a list of testsuites that should be run as part of
+# the Samba 4 test suite.
+
+# The output of this script is parsed by selftest.pl, which then decides
+# which of the tests to actually run. It will, for example, skip all tests
+# listed in selftest/skip or only run a subset during "make quicktest".
+
+# The idea is that this script outputs all of the tests of Samba 4, not
+# just those that are known to pass, and list those that should be skipped
+# or are known to fail in selftest/skip or selftest/knownfail. This makes it
+# very easy to see what functionality is still missing in Samba 4 and makes
+# it possible to run the testsuite against other servers, such as Samba 3 or
+# Windows that have a different set of features.
+
+# The syntax for a testsuite is "-- TEST --" on a single line, followed
+# by the name of the test, the environment it needs and the command to run, all
+# three separated by newlines. All other lines in the output are considered
+# comments.
+
+from selftesthelpers import *
+
+planpythontestsuite("none", "samba.tests.source")