summaryrefslogtreecommitdiff
path: root/source4/selftest
diff options
context:
space:
mode:
Diffstat (limited to 'source4/selftest')
-rw-r--r--source4/selftest/wscript18
1 files changed, 18 insertions, 0 deletions
diff --git a/source4/selftest/wscript b/source4/selftest/wscript
new file mode 100644
index 0000000000..8327838366
--- /dev/null
+++ b/source4/selftest/wscript
@@ -0,0 +1,18 @@
+# selftest main code.
+
+########################################################################
+# main test entry point
+def cmd_test(opt):
+ '''Run the full test suite'''
+ print "Starting full test"
+
+########################################################################
+# main test entry point
+def cmd_quicktest(opt):
+ '''Run the quick test suite'''
+ print "Starting quick test"
+
+def set_options(opt):
+ opt.ADD_COMMAND('test', cmd_test)
+ opt.ADD_COMMAND('quicktest', cmd_quicktest)
+