From unknown Sat Aug 16 21:00:37 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#72700 <72700@debbugs.gnu.org> To: bug#72700 <72700@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Remove an unnecessary test timeout for at-spi2-core Reply-To: bug#72700 <72700@debbugs.gnu.org> Date: Sun, 17 Aug 2025 04:00:37 +0000 retitle 72700 [PATCH] gnu: Remove an unnecessary test timeout for at-spi2-c= ore reassign 72700 guix-patches submitter 72700 Nikola severity 72700 normal tag 72700 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Aug 18 11:33:54 2024 Received: (at submit) by debbugs.gnu.org; 18 Aug 2024 15:33:54 +0000 Received: from localhost ([127.0.0.1]:56501 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sfhuj-0001i3-PX for submit@debbugs.gnu.org; Sun, 18 Aug 2024 11:33:54 -0400 Received: from lists.gnu.org ([209.51.188.17]:53510) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sfeaL-00042K-6n for submit@debbugs.gnu.org; Sun, 18 Aug 2024 08:00:37 -0400 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 1sfeZg-0007b8-NR for guix-patches@gnu.org; Sun, 18 Aug 2024 07:59:56 -0400 Received: from radojevic.rs ([139.162.187.67] helo=mail.radojevic.rs) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sfeZf-0003U6-3Y for guix-patches@gnu.org; Sun, 18 Aug 2024 07:59:56 -0400 Received: from nikola-laptop.nikola.vpn (93-86-154-42.dynamic.isp.telekom.rs [93.86.154.42]) by mail.radojevic.rs (Postfix) with ESMTPSA id 800C83024B; Sun, 18 Aug 2024 13:59:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=radojevic.rs; s=mail; t=1723982390; bh=V4U9+exTA2axWrb4Aq8T5IvbTHvwJKaEJLKxFwWv1N0=; h=From:To:Cc:Subject:Date:From; b=lsyA8vumU7orjJh+JTslGcA8YgdQLEnhNXfXZSZel/qr1dGSsTI60QY5nxeZtLLyP bo+O75kr+zLhJcmuXgdhPO2oZxALvsy8xjgIK6KyPik48cTxibxsJiwk9o1+Dmaydd 3sNcLLYa2pKOFJGTUHNuc7l+YHdwUE+OTTyUOwfCcL92EsvdLkPYgai8c0A/0qVahW 9JKtkWRAQIKKOw0/eVOFMxTajtOuxznb0jCWiisP58ZLaqPSk6y+88losAOYSnmala WKuCdgdC9VHW6E48W6YWHTmF7tKDjdgZ4ZW+bk+hYrt2LEgFPGo3QAB1z5KBu44to7 lngT9eQugME7w== From: Nikola To: guix-patches@gnu.org Subject: [PATCH] gnu: Remove an unnecessary test timeout for at-spi2-core Date: Sun, 18 Aug 2024 13:59:45 +0200 Message-ID: <20240818115945.13554-1-nikola@radojevic.rs> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=139.162.187.67; envelope-from=nikola@radojevic.rs; helo=mail.radojevic.rs X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 18 Aug 2024 11:33:53 -0400 Cc: Nikola 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.4 (--) aarch64 builds keep failing because of this timeout, so removing this timeout should help --- gnu/packages/gtk.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 04183fa806..05041b57ab 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -856,6 +856,10 @@ (define-public at-spi2-core (with-directory-excursion (string-append "../at-spi2-core-" #$version "") (invoke "dbus-run-session" "--" "ci/run-registryd-tests.sh") + ;; Remove test timeout which caused failed builds on + ;; aarch64 + (substitute* "tests/atspi/meson.build" + ((", timeout: [0-9]+") "")) (substitute* "ci/run-tests.sh" (("ps auxwww") "") ;avoid a dependency on procps (("meson test -C _build") -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Sun Aug 18 18:37:47 2024 Received: (at 72700-done) by debbugs.gnu.org; 18 Aug 2024 22:37:47 +0000 Received: from localhost ([127.0.0.1]:56950 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sfoWx-0004ub-9x for submit@debbugs.gnu.org; Sun, 18 Aug 2024 18:37:47 -0400 Received: from tobias.gr ([80.241.217.52]:48312) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sfoWu-0004uS-PP for 72700-done@debbugs.gnu.org; Sun, 18 Aug 2024 18:37:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=RkIMWgmhxUi70 E9eN4NttNLAsyEerJjSTRV3gv8A3Xg=; h=date:subject:to:from; d=tobias.gr; b=bkKfOm6dDjHAH6aGm/oqVxyFaHhyHUW0mf2gmb6C8ba/6fVGTXBN1RKBy+LKwK5PG0Vs ATr+YhP2/OKLiTQXZ2kTzH3TZfB1bm/DQawuGk3T74CX8Mbgch48xSE54ocPrjQ8+OBUpH 6XZpQGRJWqrR4CSoF7goMwuicfuKIQcCrqGT+MChLADmFGf2iTK82FSvbvXHYwJ8ka9G4E Dl+jxHF6iZ44hph7oC3vmT4F2FQ3268arKRLv1Ec8PBFFTHcSMqR1rdAUa6hmp1CqeeGUw EsOP2BzW7oMo+SZ6cPfk4TR9TtZE3ik54Y6iHdukB22L4MsMxRgUpMMwmfMOmCxQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id e0fc9b88 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for <72700-done@debbugs.gnu.org>; Sun, 18 Aug 2024 22:36:47 +0000 (UTC) From: Tobias Geerinckx-Rice To: 72700-done@debbugs.gnu.org Subject: Re: [PATCH] gnu: Remove an unnecessary test timeout for at-spi2-core BIMI-Selector: v=BIMI1; s=default; Date: Mon, 19 Aug 2024 00:36:59 +0200 Message-ID: <87bk1ptq44.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 72700-done 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 (-) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Thanks! Pushed as 58a839273d1e4fac2b3a0ec456aabdf82deaa124. I tweaked the commit message to fit our norms, which mostly match=20 the GNU =E2=80=98changelog=E2=80=99 style: gnu: at-spi2-core: Remove unnecessary test timeout. =20=20=20=20 [Free-form blurb goes here, if you want, but more often than=20 not future readers are better served by a succinct code comment.] =20=20=20=20 * gnu/packages/gtk.scm (at-spi2-core)[arguments]: Remove the =E2=80=98timeout=E2=80=99 argument from the test invocation. Closing, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCZsJ3jA0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15Qw4BAMEJKRNP5BcuLjXCAK/QEZ8PvJCjxCJ7lG5BICaT 1a0rAP9cpTYU2O0uJ1+JwXUjl/oQHKZiJzxNmh+AmdMNS41JAQ== =QJEO -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 16 21:00:37 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 16 Sep 2024 11:24:05 +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