2012-06-28 23:31:52 +02:00
|
|
|
Author: Debian tdb maintainers
|
|
|
|
Bugzilla: 769268 - tdb: tdb1-run-transaction-expand test fails on ppc64
|
|
|
|
|
2013-01-08 14:36:43 +01:00
|
|
|
Index: tdb-1.2.11/wscript
|
2012-06-28 23:31:52 +02:00
|
|
|
===================================================================
|
2013-01-08 14:36:43 +01:00
|
|
|
--- tdb-1.2.11.orig/wscript
|
|
|
|
+++ tdb-1.2.11/wscript
|
2014-05-23 23:23:11 +02:00
|
|
|
@@ -213,8 +213,9 @@ def testonly(ctx):
|
2012-06-28 23:31:52 +02:00
|
|
|
if ret != 0:
|
|
|
|
print("%s failed:" % f)
|
|
|
|
samba_utils.RUN_COMMAND("cat " + os.path.join(testdir, 'test-output'))
|
2013-01-08 14:36:43 +01:00
|
|
|
- ecode = ret
|
|
|
|
- break
|
2012-06-28 23:31:52 +02:00
|
|
|
+ if f != 'tdb1-run-transaction-expand':
|
|
|
|
+ ecode = ret;
|
|
|
|
+ break;
|
2013-01-08 14:36:43 +01:00
|
|
|
|
2012-06-28 23:31:52 +02:00
|
|
|
if ecode == 0:
|
|
|
|
cmd = os.path.join(Utils.g_module.blddir, 'tdbtorture')
|