diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-04 22:11:30 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:26 +1000 |
commit | fe060c8f50de23c4f3503a32c3237bb80bd68331 (patch) | |
tree | 20c44975fa6ab2fe6eb4f7269b44b0d76bdaa9c9 /lib/tevent/wscript | |
parent | 7d3421077216c00cf6744ab335447c5f75a9c24b (diff) | |
download | samba-fe060c8f50de23c4f3503a32c3237bb80bd68331.tar.gz samba-fe060c8f50de23c4f3503a32c3237bb80bd68331.tar.bz2 samba-fe060c8f50de23c4f3503a32c3237bb80bd68331.zip |
s4-waf: added simple 'waf test' support for tdb, talloc and ldb
Diffstat (limited to 'lib/tevent/wscript')
-rw-r--r-- | lib/tevent/wscript | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/tevent/wscript b/lib/tevent/wscript index d9634f452a..9f7e25d241 100644 --- a/lib/tevent/wscript +++ b/lib/tevent/wscript @@ -53,3 +53,8 @@ def build(bld): deps='replace talloc', enabled= not bld.CONFIG_SET('USING_SYSTEM_TEVENT'), vnum=VERSION) + +def test(ctx): + '''test tevent''' + print("The tevent testsuite is part of smbtorture in samba4") + |