From fe060c8f50de23c4f3503a32c3237bb80bd68331 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 4 Apr 2010 22:11:30 +1000 Subject: s4-waf: added simple 'waf test' support for tdb, talloc and ldb --- lib/tdb/wscript | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/tdb') diff --git a/lib/tdb/wscript b/lib/tdb/wscript index aff395f7fc..90fa191bf8 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -70,3 +70,9 @@ def build(bld): enabled=s4_build, realname='tdb.so') + +def test(ctx): + '''run tdb testsuite''' + import Utils + cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture') + os.system(cmd) -- cgit