a6aa008ac3
- refresh ignore-tdb1-run-transaction-expand.diff patch OBS-URL: https://build.opensuse.org/request/show/147462 OBS-URL: https://build.opensuse.org/package/show/network:samba:STABLE/tdb?expand=0&rev=30
20 lines
699 B
Diff
20 lines
699 B
Diff
Author: Debian tdb maintainers
|
|
Bugzilla: 769268 - tdb: tdb1-run-transaction-expand test fails on ppc64
|
|
|
|
Index: tdb-1.2.11/wscript
|
|
===================================================================
|
|
--- tdb-1.2.11.orig/wscript
|
|
+++ tdb-1.2.11/wscript
|
|
@@ -196,8 +196,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')
|