summaryrefslogtreecommitdiff
path: root/lib/tdb
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-07 12:25:42 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-07 14:29:21 +1100
commitbb0017615d44b66828c98a408ca15b50956f3e91 (patch)
treed3fccf5ebcf544ab36883a79141367331f79bdc0 /lib/tdb
parentfdad0328e4ee4de26e94f9b19a74ded83c5b00ce (diff)
downloadsamba-bb0017615d44b66828c98a408ca15b50956f3e91.tar.gz
samba-bb0017615d44b66828c98a408ca15b50956f3e91.tar.bz2
samba-bb0017615d44b66828c98a408ca15b50956f3e91.zip
waf: fixed exit status of test suites
use RUN_COMMAND() to handle signal errors and exit status
Diffstat (limited to 'lib/tdb')
-rw-r--r--lib/tdb/wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript
index 53f81fe49b..6e00f3c917 100644
--- a/lib/tdb/wscript
+++ b/lib/tdb/wscript
@@ -110,9 +110,11 @@ def build(bld):
def test(ctx):
'''run tdb testsuite'''
- import Utils
+ import Utils, samba_utils
cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')
- os.system(cmd)
+ ret = samba_utils.RUN_COMMAND(cmd)
+ print("testsuite returned %d" % ret)
+ sys.exit(ret)
def dist():
'''makes a tarball for distribution'''