Your message dated Thu, 18 Dec 2025 01:30:03 -0800
with message-id
<caou6tacqpecvew-deeqwvvbmmvngzbrrkl3bahw7psylayt...@mail.gmail.com>
and subject line Re: Bug#1122657: regression with 'nocheck' buildprofile
has caused the Debian Bug report #1122657,
regarding regression with 'nocheck' buildprofile
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1122657: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1122657
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: mariadb
Version: 1:11.8.5-3~exp2
Tag: patch
Hi,
the latest upload of mariadb regresses on 'nocheck' build profile as it
unconditionally runs the test suite. Attached is a patch to fix it.
Regards,
Daniel
From 538e35fb5148ea0bc45fe3cda812c557b65a379f Mon Sep 17 00:00:00 2001
From: Daniel Baumann <[email protected]>
Date: Fri, 12 Dec 2025 09:12:35 +0100
Subject: [PATCH 1/2] Skipping testsuite when building with nocheck.
Signed-off-by: Daniel Baumann <[email protected]>
---
debian/rules | 2 ++
1 file changed, 2 insertions(+)
diff --git a/debian/rules b/debian/rules
index 4fe7c154..c6d6e77d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -143,6 +143,7 @@ override_dh_auto_build:
dpkg-architecture
cd $(BUILDDIR) && $(MAKE)
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
# Run testsuite
cd $(BUILDDIR)/mysql-test && \
export MTR_PRINT_CORE=detailed && \
@@ -150,6 +151,7 @@ override_dh_auto_build:
--max-save-core=1 --max-save-datadir=1 \
--parallel=$(NUMJOBS) --big-test \
$(MTR_ARGUMENTS_APPEND)
+endif
# Note that the 'nocheck' condition inside this section may potentially be
# completely obsolete, as at least the Launchpad riscv64 builder completely
--
2.51.0
--- End Message ---
--- Begin Message ---
Version: 1:11.8.5-3
The experimental version has now been superseded by a proper version
that fully builds without any extra or temporary stuff.
--- End Message ---