summaryrefslogtreecommitdiffstats
path: root/debian/patches/40_test_transaction_expand_non_fatal.diff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 17:46:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 17:46:10 +0000
commit5f3dfa0191c256c769a27cda0de962eadb849fdd (patch)
treec781abc701e92e804c26889f35ea072cd4b09c93 /debian/patches/40_test_transaction_expand_non_fatal.diff
parentAdding upstream version 1.4.8. (diff)
downloadtdb-5f3dfa0191c256c769a27cda0de962eadb849fdd.tar.xz
tdb-5f3dfa0191c256c769a27cda0de962eadb849fdd.zip
Adding debian version 1.4.8-2.debian/1.4.8-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/40_test_transaction_expand_non_fatal.diff')
-rw-r--r--debian/patches/40_test_transaction_expand_non_fatal.diff22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/patches/40_test_transaction_expand_non_fatal.diff b/debian/patches/40_test_transaction_expand_non_fatal.diff
new file mode 100644
index 0000000..e1812a6
--- /dev/null
+++ b/debian/patches/40_test_transaction_expand_non_fatal.diff
@@ -0,0 +1,22 @@
+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 <ivo.dedecker@ugent.be>
+Bug-Debian: http://bugs.debian.org/674749
+Forwarded: no
+Last-Update: 2012-05-28
+
+--- a/wscript
++++ b/wscript
+@@ -238,8 +238,9 @@
+ 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(blddir, 'tdbtorture')