From f15a81c1c02426a5afe59a364d00438f06a10501 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Mar 2010 20:38:03 +1100 Subject: build: added ASN1, PIDL and ET build rules also added selftest example command --- source4/selftest/wscript | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 source4/selftest/wscript (limited to 'source4/selftest/wscript') 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) + -- cgit