On Mon, May 28, 2012 at 12:25:03PM +0200, Jelmer Vernooij wrote: > Would it perhaps be possible to just ignore exit 1 codes from > test-transaction-expand.
Jelmer, Here is a new, much smaller patch. Cheers, Ivo
Description: Make test transaction-expand non-fatal The test tdb1-run-transaction-expand fails on some architectures. This patch makes the test non-fatal for now. Author: Ivo De Decker <[email protected]> Bug-Debian: http://bugs.debian.org/674749 Forwarded: no Last-Update: 2012-05-28 --- tdb-1.2.10.orig/wscript +++ tdb-1.2.10/wscript @@ -192,8 +192,9 @@ def testonly(ctx): if ret != 0: print("%s failed:" % f) samba_utils.RUN_COMMAND("cat " + os.path.join(testdir, 'test-output')) - ecode = ret; - break; + if f != 'tdb1-run-transaction-expand': + ecode = ret; + break; if ecode == 0: cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')

