From unknown Tue Sep 23 19:46:20 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#61493 <61493@debbugs.gnu.org> To: bug#61493 <61493@debbugs.gnu.org> Subject: Status: [PATCH 0/2] gnu: hwloc: Skip failing test on non-x86 systems. Reply-To: bug#61493 <61493@debbugs.gnu.org> Date: Wed, 24 Sep 2025 02:46:20 +0000 retitle 61493 [PATCH 0/2] gnu: hwloc: Skip failing test on non-x86 systems. reassign 61493 guix-patches submitter 61493 Simon South severity 61493 normal tag 61493 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 13 15:57:03 2023 Received: (at submit) by debbugs.gnu.org; 13 Feb 2023 20:57:03 +0000 Received: from localhost ([127.0.0.1]:51797 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRfsk-0007bD-Ld for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:57:03 -0500 Received: from lists.gnu.org ([209.51.188.17]:34066) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRfsi-0007am-LG for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:57:01 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRfsi-0007Sw-CZ for guix-patches@gnu.org; Mon, 13 Feb 2023 15:57:00 -0500 Received: from mailout.easymail.ca ([64.68.200.34]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRfsg-00074I-DX for guix-patches@gnu.org; Mon, 13 Feb 2023 15:57:00 -0500 Received: from localhost (localhost [127.0.0.1]) by mailout.easymail.ca (Postfix) with ESMTP id 1219D686C5 for ; Mon, 13 Feb 2023 20:56:55 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at emo07-pco.easydns.vpn Received: from mailout.easymail.ca ([127.0.0.1]) by localhost (emo07-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id koNyPqlSeXXB for ; Mon, 13 Feb 2023 20:56:54 +0000 (UTC) Received: from jupiter.smallsystems.net (23-233-96-72.cpe.pppoe.ca [23.233.96.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mailout.easymail.ca (Postfix) with ESMTPSA id E6C4668487 for ; Mon, 13 Feb 2023 20:56:53 +0000 (UTC) From: Simon South To: guix-patches@gnu.org Subject: [PATCH 0/2] gnu: hwloc: Skip failing test on non-x86 systems. Date: Mon, 13 Feb 2023 15:56:47 -0500 Message-Id: X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=64.68.200.34; envelope-from=simon@simonsouth.net; helo=mailout.easymail.ca X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Here's a patch that circumvents a test failure in hwloc 2.9.0 on non-x86 systems (and specifically on AArch64), allowing the package to build successfully on these machines. An additional, bonus patch removes a pair of obsolete comments from the hwloc package definitions. I've tested these changes on x86-64 and AArch64 and generally, things seem fine. - On x86-64, of hwloc's 136 dependents the only seven[0] that fail to build appear to be existing failures, according to ci.guix.gnu.org. - On AArch64, the package builds fine; many of its dependents fail (in fact I am still waiting for builds to complete) but again, none of the failures I've investigated appear to be new. ---------- Here's some background information regarding the fix in case it's useful: One of hwloc's primary functions is to provide information about the host computer's processor topology, in terms of NUMA nodes, CPU clusters and so on. At start-up it it tries to collect this information by querying a sequence of "topology backends" that each implement a different strategy for detecting the host system's configuration. The first source of information is the operating system, so on most Guix machines the "Linux" backend runs first. This tries to pull information from the /sys filesystem tree but since that's inaccessible from within build containers, this always fails during hwloc's tests. For x86 machines specifically, hwloc provides an architecture-specific, fallback backend that can obtain the same information by querying the hardware directly. This normally succeeds within the build environment, and so hwloc passes its tests without issue on x86 and x86-64 machines. But those are the only platforms for which an architecture-specific topology backend is provided: On other systems, once the Linux backend fails, hwloc has nothing else to try and so any tests that rely on the host system's topology having been detected will fail. My patch fixes the build on these machines by skipping the one (other) test that relies on this information being available, only on non-x86 systems where the unavailability of /sys means certain failure. For reference, the backends mentioned above are implemented in hwloc's hwloc/topology-linux.c and hwloc/topology-x86.c. -- Simon South simon@simonsouth.net [0] combinatorial-blas, cube, elemental, elpa-openmpi, python-dolfin-adjoint, scorep-openmpi and superlu-dist. Simon South (2): gnu: hwloc: Remove obsolete comments. gnu: hwloc: Skip failing test on non-x86 systems. gnu/packages/mpi.scm | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) base-commit: 5b1eab43f011983d9ee560d6935409b6b39706ff -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 13 16:01:25 2023 Received: (at 61493) by debbugs.gnu.org; 13 Feb 2023 21:01:25 +0000 Received: from localhost ([127.0.0.1]:51807 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRfwy-0007kb-Rf for submit@debbugs.gnu.org; Mon, 13 Feb 2023 16:01:25 -0500 Received: from mailout.easymail.ca ([64.68.200.34]:40938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRfwv-0007jx-0a for 61493@debbugs.gnu.org; Mon, 13 Feb 2023 16:01:21 -0500 Received: from localhost (localhost [127.0.0.1]) by mailout.easymail.ca (Postfix) with ESMTP id 6A31E67F6A for <61493@debbugs.gnu.org>; Mon, 13 Feb 2023 21:01:15 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at emo07-pco.easydns.vpn Received: from mailout.easymail.ca ([127.0.0.1]) by localhost (emo07-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MBLlZD_tH0v2 for <61493@debbugs.gnu.org>; Mon, 13 Feb 2023 21:01:15 +0000 (UTC) Received: from jupiter.smallsystems.net (23-233-96-72.cpe.pppoe.ca [23.233.96.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mailout.easymail.ca (Postfix) with ESMTPSA id 306FF6866F for <61493@debbugs.gnu.org>; Mon, 13 Feb 2023 21:01:15 +0000 (UTC) From: Simon South To: 61493@debbugs.gnu.org Subject: [PATCH 2/2] gnu: hwloc: Skip failing test on non-x86 systems. Date: Mon, 13 Feb 2023 16:01:12 -0500 Message-Id: X-Mailer: git-send-email 2.39.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61493 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/mpi.scm (hwloc-2)[arguments]<#:phases>: Rename "skip-test-that-requires-/sys" phase to "skip-tests-that-require-/sys" and expand to skip additional test requiring /sys on non-x86 systems. --- gnu/packages/mpi.scm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm index febd0b4124..22d47b966c 100644 --- a/gnu/packages/mpi.scm +++ b/gnu/packages/mpi.scm @@ -164,10 +164,19 @@ (define-public hwloc-2 (substitute* "tests/hwloc/linux-libnuma.c" (("numa_available\\(\\)") "-1")))) - (add-before 'check 'skip-test-that-requires-/sys + (add-before 'check 'skip-tests-that-require-/sys (lambda _ ;; 'test-gather-topology.sh' requires /sys as of 2.9.0; skip it. - (setenv "HWLOC_TEST_GATHER_TOPOLOGY" "0"))) + (setenv "HWLOC_TEST_GATHER_TOPOLOGY" "0") + + ;; 'hwloc_backends' also requires /sys on non-x86 systems, for + ;; which hwloc lacks a topology backend not reliant on the + ;; operating system; skip it also on these machines. + (substitute* "tests/hwloc/hwloc_backends.c" + ,@(if (not (target-x86?)) + '((("putenv\\(\\(char \\*\\) \"HWLOC_L" all) + (string-append "exit (77);\n" all))) + '())))) (add-before 'check 'skip-test-that-fails-on-qemu (lambda _ ;; Skip test that fails on emulated hardware due to QEMU bug: -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 13 16:01:25 2023 Received: (at 61493) by debbugs.gnu.org; 13 Feb 2023 21:01:25 +0000 Received: from localhost ([127.0.0.1]:51809 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRfwz-0007kf-5U for submit@debbugs.gnu.org; Mon, 13 Feb 2023 16:01:25 -0500 Received: from mailout.easymail.ca ([64.68.200.34]:40930) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRfwv-0007jw-4X for 61493@debbugs.gnu.org; Mon, 13 Feb 2023 16:01:21 -0500 Received: from localhost (localhost [127.0.0.1]) by mailout.easymail.ca (Postfix) with ESMTP id 518CE686C1 for <61493@debbugs.gnu.org>; Mon, 13 Feb 2023 21:01:15 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at emo07-pco.easydns.vpn Received: from mailout.easymail.ca ([127.0.0.1]) by localhost (emo07-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ii4gjwlRkCPF for <61493@debbugs.gnu.org>; Mon, 13 Feb 2023 21:01:15 +0000 (UTC) Received: from jupiter.smallsystems.net (23-233-96-72.cpe.pppoe.ca [23.233.96.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mailout.easymail.ca (Postfix) with ESMTPSA id 1968467F6A for <61493@debbugs.gnu.org>; Mon, 13 Feb 2023 21:01:15 +0000 (UTC) From: Simon South To: 61493@debbugs.gnu.org Subject: [PATCH 1/2] gnu: hwloc: Remove obsolete comments. Date: Mon, 13 Feb 2023 16:01:11 -0500 Message-Id: <16ef00ad362bd07513600591e70e49997d60adde.1676319305.git.simon@simonsouth.net> X-Mailer: git-send-email 2.39.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61493 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) hwloc 2.x become the default with commit 8ec7ca22d3, "gnu: hwloc: Default to 2.x.". * gnu/packages/mpi.scm (hwloc-1): Remove obsolete comment. (hwloc-2): Remove obsolete comment. --- gnu/packages/mpi.scm | 3 --- 1 file changed, 3 deletions(-) diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm index 70b14c30b3..febd0b4124 100644 --- a/gnu/packages/mpi.scm +++ b/gnu/packages/mpi.scm @@ -53,8 +53,6 @@ (define-module (gnu packages mpi) #:use-module (ice-9 match)) (define-public hwloc-1 - ;; Note: For now we keep 1.x as the default because many packages have yet - ;; to migrate to 2.0. (package (name "hwloc") (version "1.11.13") @@ -140,7 +138,6 @@ (define-public hwloc-1 (license license:bsd-3))) (define-public hwloc-2 - ;; Note: 2.x isn't the default yet, see above. (package (inherit hwloc-1) (version "2.9.0") -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 27 09:53:44 2023 Received: (at 61493-done) by debbugs.gnu.org; 27 Feb 2023 14:53:44 +0000 Received: from localhost ([127.0.0.1]:46520 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWesq-0005OI-0q for submit@debbugs.gnu.org; Mon, 27 Feb 2023 09:53:44 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52838) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWeso-0005O6-Mi for 61493-done@debbugs.gnu.org; Mon, 27 Feb 2023 09:53:43 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWesi-0002G8-Qg; Mon, 27 Feb 2023 09:53:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=GzY8JVa0TzRvTug6VSUG4OCv+ZroygXRz4lVCPVdNqI=; b=HUArMe5Pmvf6cWnqNBvi 9s9JXOIovD0h029q5AKbJB3uobtpFxmzRC+2vXVPcjZOzDl6yu1xFqR0ay7NZBXNDiabpZH5Ka+2o WOwygFSi2RA44lBPfHT7131+SuxdvYVrWN0WJFa0Xa1B235IBaHqoqgdTN45pWvoi11U8/VQTrmfq yE7slFA349eeQq3C36S5TL80rzMUfboMVVWQ0oWzgzYJoNLLY1HxUy2hXqdIHXO4tgPVNlv5xj43E lBf7fSpJw1ZgJ+Nk3G2sIbfq9j4xZLuWFuukhVA++saHcYucmmCfvIZ4nVniGXOTgyVtFuL0twoZi otyfKDESdBXm5Q==; Received: from [193.50.110.164] (helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pWert-0005hz-AT; Mon, 27 Feb 2023 09:52:58 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Simon South Subject: Re: bug#61493: [PATCH 0/2] gnu: hwloc: Skip failing test on non-x86 systems. References: Date: Mon, 27 Feb 2023 15:52:43 +0100 In-Reply-To: (Simon South's message of "Mon, 13 Feb 2023 15:56:47 -0500") Message-ID: <875ybnjh38.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61493-done Cc: 61493-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Simon, Simon South skribis: > Here's a patch that circumvents a test failure in hwloc 2.9.0 on non-x86 > systems (and specifically on AArch64), allowing the package to build > successfully on these machines. > > An additional, bonus patch removes a pair of obsolete comments from the h= wloc > package definitions. > > I've tested these changes on x86-64 and AArch64 and generally, things seem > fine. > > - On x86-64, of hwloc's 136 dependents the only seven[0] that fail to bui= ld > appear to be existing failures, according to ci.guix.gnu.org. > > - On AArch64, the package builds fine; many of its dependents fail (in fa= ct I > am still waiting for builds to complete) but again, none of the failures > I've investigated appear to be new. It=E2=80=99s a clear improvement according to . > ---------- > > Here's some background information regarding the fix in case it's useful: > > One of hwloc's primary functions is to provide information about the host > computer's processor topology, in terms of NUMA nodes, CPU clusters and s= o on. > At start-up it it tries to collect this information by querying a sequenc= e of > "topology backends" that each implement a different strategy for detectin= g the > host system's configuration. > > The first source of information is the operating system, so on most Guix > machines the "Linux" backend runs first. This tries to pull information = from > the /sys filesystem tree but since that's inaccessible from within build > containers, this always fails during hwloc's tests. > > For x86 machines specifically, hwloc provides an architecture-specific, > fallback backend that can obtain the same information by querying the har= dware > directly. This normally succeeds within the build environment, and so hw= loc > passes its tests without issue on x86 and x86-64 machines. > > But those are the only platforms for which an architecture-specific topol= ogy > backend is provided: On other systems, once the Linux backend fails, hwlo= c has > nothing else to try and so any tests that rely on the host system's topol= ogy > having been detected will fail. > > My patch fixes the build on these machines by skipping the one (other) te= st > that relies on this information being available, only on non-x86 systems = where > the unavailability of /sys means certain failure. > > For reference, the backends mentioned above are implemented in hwloc's > hwloc/topology-linux.c and hwloc/topology-x86.c. Interesting, thanks for explaining! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 27 10:37:46 2023 Received: (at 61493) by debbugs.gnu.org; 27 Feb 2023 15:37:46 +0000 Received: from localhost ([127.0.0.1]:48598 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWfZS-00011A-Cu for submit@debbugs.gnu.org; Mon, 27 Feb 2023 10:37:46 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:49356) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWfZM-00010q-KL for 61493@debbugs.gnu.org; Mon, 27 Feb 2023 10:37:44 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=from:to:cc:subject:references:date:in-reply-to: message-id:mime-version:content-transfer-encoding; bh=iZYCjCFKJe/CL7qIgj13MSrsjZ2vroozUdP/e9EL4IY=; b=Fj0YCiaikD83DQ6T9g4JZdJfLc3/6kuwhBKlyIbiDFO8tgT6pg2pkDcE as3OvbUrH+kl6+Rn/LkRvNx02UqCmgaTL4Y/+2YhDiwsGUQTHwNPDGXUx f0GQ6G7VtIN3DtAo/OlLyzbIR2gZwygHUMHHPvqfqH4rbLHDMMZSXqyJN Q=; Authentication-Results: mail3-relais-sop.national.inria.fr; dkim=none (message not signed) header.i=none; spf=SoftFail smtp.mailfrom=ludovic.courtes@inria.fr; dmarc=fail (p=none dis=none) d=inria.fr X-IronPort-AV: E=Sophos;i="5.98,219,1673910000"; d="scan'208";a="48742918" Received: from unknown (HELO ribbon) ([193.50.110.164]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Feb 2023 16:37:34 +0100 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Simon South Subject: Re: bug#61493: [PATCH 0/2] gnu: hwloc: Skip failing test on non-x86 systems. References: Date: Mon, 27 Feb 2023 16:37:33 +0100 In-Reply-To: (Simon South's message of "Mon, 13 Feb 2023 15:56:47 -0500") Message-ID: <87cz5vi0g2.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61493 Cc: 61493@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi again, Simon South skribis: > Here's a patch that circumvents a test failure in hwloc 2.9.0 on non-x86 > systems (and specifically on AArch64), allowing the package to build > successfully on these machines. I forwarded this to Brice Goglin, a colleague of mine also hwloc co-maintainer, and they kindly opened an issue usptream: https://github.com/open-mpi/hwloc/pull/570 Feel free to comment there! Ludo=E2=80=99. From unknown Tue Sep 23 19:46:20 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 28 Mar 2023 11:24:14 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator