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/talloc/wscript | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lib/talloc/wscript') diff --git a/lib/talloc/wscript b/lib/talloc/wscript index e24314b7d1..fadb4590cc 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -61,7 +61,8 @@ def build(bld): bld.PKG_CONFIG_FILES('talloc.pc', vnum=VERSION) -def dist(): - '''makes a tarball for distribution''' - samba_dist.dist() - +def test(ctx): + '''run talloc testsuite''' + import Utils + cmd = os.path.join(Utils.g_module.blddir, 'talloc_testsuite') + os.system(cmd) -- cgit