From unknown Sat Jun 21 10:30: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#35483 <35483@debbugs.gnu.org> To: bug#35483 <35483@debbugs.gnu.org> Subject: Status: [PATCH] gnu: u-boot-tools: Only run full test suite on x86. Reply-To: bug#35483 <35483@debbugs.gnu.org> Date: Sat, 21 Jun 2025 17:30:37 +0000 retitle 35483 [PATCH] gnu: u-boot-tools: Only run full test suite on x86. reassign 35483 guix-patches submitter 35483 Vagrant Cascadian severity 35483 normal tag 35483 patch fixed thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 29 00:03:58 2019 Received: (at submit) by debbugs.gnu.org; 29 Apr 2019 04:03:58 +0000 Received: from localhost ([127.0.0.1]:38192 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hKxWH-0003NW-S6 for submit@debbugs.gnu.org; Mon, 29 Apr 2019 00:03:58 -0400 Received: from eggs.gnu.org ([209.51.188.92]:46464) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hKxWD-0003NF-KJ for submit@debbugs.gnu.org; Mon, 29 Apr 2019 00:03:54 -0400 Received: from lists.gnu.org ([209.51.188.17]:45179) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hKxW8-0001Lr-HS for submit@debbugs.gnu.org; Mon, 29 Apr 2019 00:03:48 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hKxW7-0006vh-Hs for guix-patches@gnu.org; Mon, 29 Apr 2019 00:03:48 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_40,RCVD_IN_DNSWL_NONE, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hKxOQ-0006a0-Fh for guix-patches@gnu.org; Sun, 28 Apr 2019 23:55:51 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:42286) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hKxOQ-0006Z2-A9 for guix-patches@gnu.org; Sun, 28 Apr 2019 23:55:50 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100e]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 2458B1AA54 for ; Sun, 28 Apr 2019 20:55:46 -0700 (PDT) From: Vagrant Cascadian To: guix-patches@gnu.org Subject: [PATCH] gnu: u-boot-tools: Only run full test suite on x86. Date: Sun, 28 Apr 2019 20:55:39 -0700 Message-ID: <87ef5lbh38.fsf@ponder> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 173.255.214.101 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -2.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: -3.3 (---) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * gnu/packages/bootloaders (u-boot-tools)[check]: Remove x86 tests. [check-x86]: New phase with x86 tests. [patch]: Patch test-imagetools.sh to test binaries to be installed. =2D-- gnu/packages/bootloaders.scm | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index b4eabaea48..0cd72fb44c 100644 =2D-- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -442,6 +442,10 @@ also initializes the boards (RAM etc).") (("def test_ctrl_c") "@pytest.mark.skip(reason=3D'Guix has problems with SIGINT') def test_ctrl_c")) + ;; Test against the tools being installed rather than tools b= uilt + ;; for "sandbox" target. + (substitute* "test/image/test-imagetools.sh" + (("BASEDIR=3Dsandbox") "BASEDIR=3D.")) (for-each (lambda (file) (substitute* file ;; Disable signatures, due to GPL/Openssl @@ -484,12 +488,19 @@ def test_ctrl_c")) (delete 'check) (add-after 'install 'check (lambda* (#:key make-flags test-target #:allow-other-keys) =2D (apply invoke "make" "mrproper" make-flags) =2D (setenv "SDL_VIDEODRIVER" "dummy") =2D (setenv "PAGER" "cat") =2D (apply invoke "make" test-target make-flags) =2D (symlink "build-sandbox_spl" "sandbox") =2D (invoke "test/image/test-imagetools.sh")))))) + (invoke "test/image/test-imagetools.sh"))) + ;; Only run full test suite on x86 systems, as many tests assume + ;; x86. + ,@(if (string-match "^(x86_64|i686)-linux" + (or (%current-target-system) + (%current-system))) + '((add-after 'check 'check-x86 + (lambda* (#:key make-flags test-target #:allow-other-= keys) + (apply invoke "make" "mrproper" make-flags) + (setenv "SDL_VIDEODRIVER" "dummy") + (setenv "PAGER" "cat") + (apply invoke "make" test-target make-flags)))) + '())))) (description "U-Boot is a bootloader used mostly for ARM boards. It also initializes the boards (RAM etc). This package provides its board-independent tools."))) =2D-=20 2.20.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXMZ1vAAKCRDcUY/If5cW qlmPAQDBv5y0ZYfGgMj0LIh+ZlAnhnxEDakVWpCiEHdba0ILDAD9FnZFX3SwpPWW VftsjbyYG99e1fWv3E+pnPdkcpj77AU= =mKQm -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 29 19:32:55 2019 Received: (at 35483) by debbugs.gnu.org; 29 Apr 2019 23:32:55 +0000 Received: from localhost ([127.0.0.1]:40116 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLFlW-0005SN-MP for submit@debbugs.gnu.org; Mon, 29 Apr 2019 19:32:55 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:57124) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLFlU-0005S7-8B for 35483@debbugs.gnu.org; Mon, 29 Apr 2019 19:32:53 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100e]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 986731AA54; Mon, 29 Apr 2019 16:32:45 -0700 (PDT) From: Vagrant Cascadian To: 35483@debbugs.gnu.org Subject: Re: gnu: u-boot-tools: Only run full test suite on x86. In-Reply-To: <87ef5lbh38.fsf@ponder> References: <87ef5lbh38.fsf@ponder> Date: Mon, 29 Apr 2019 16:32:40 -0700 Message-ID: <87pnp4wfon.fsf@ponder> 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: 35483 Cc: Danny Milosavljevic 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 Content-Transfer-Encoding: quoted-printable I neglected to mention in my initial submission that the test suite has failed on non-x86 architectures since I started testing u-boot on Guix a year or so ago... It blocks working support for veyron-speedy/Asus C201, and that would be very nice to have fixed for 1.0, of course! I may need to update the patch to exclude i686-linux from the full test suite, as it seems with u-boot 2019.04 to also fail with 32-bit x86 making some 64-bit assumptions... Thanks for the review, if you can! live well, vagrant On 2019-04-28, Vagrant Cascadian wrote: > * gnu/packages/bootloaders (u-boot-tools)[check]: Remove x86 tests. > [check-x86]: New phase with x86 tests. > [patch]: Patch test-imagetools.sh to test binaries to be installed. > --- > gnu/packages/bootloaders.scm | 23 +++++++++++++++++------ > 1 file changed, 17 insertions(+), 6 deletions(-) > > diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm > index b4eabaea48..0cd72fb44c 100644 > --- a/gnu/packages/bootloaders.scm > +++ b/gnu/packages/bootloaders.scm > @@ -442,6 +442,10 @@ also initializes the boards (RAM etc).") > (("def test_ctrl_c") > "@pytest.mark.skip(reason=3D'Guix has problems with SIGIN= T') > def test_ctrl_c")) > + ;; Test against the tools being installed rather than tools= built > + ;; for "sandbox" target. > + (substitute* "test/image/test-imagetools.sh" > + (("BASEDIR=3Dsandbox") "BASEDIR=3D.")) > (for-each (lambda (file) > (substitute* file > ;; Disable signatures, due to GPL/Open= ssl > @@ -484,12 +488,19 @@ def test_ctrl_c")) > (delete 'check) > (add-after 'install 'check > (lambda* (#:key make-flags test-target #:allow-other-keys) > - (apply invoke "make" "mrproper" make-flags) > - (setenv "SDL_VIDEODRIVER" "dummy") > - (setenv "PAGER" "cat") > - (apply invoke "make" test-target make-flags) > - (symlink "build-sandbox_spl" "sandbox") > - (invoke "test/image/test-imagetools.sh")))))) > + (invoke "test/image/test-imagetools.sh"))) > + ;; Only run full test suite on x86 systems, as many tests ass= ume > + ;; x86. > + ,@(if (string-match "^(x86_64|i686)-linux" > + (or (%current-target-system) > + (%current-system))) > + '((add-after 'check 'check-x86 > + (lambda* (#:key make-flags test-target #:allow-othe= r-keys) > + (apply invoke "make" "mrproper" make-flags) > + (setenv "SDL_VIDEODRIVER" "dummy") > + (setenv "PAGER" "cat") > + (apply invoke "make" test-target make-flags)))) > + '())))) > (description "U-Boot is a bootloader used mostly for ARM boards. It > also initializes the boards (RAM etc). This package provides its > board-independent tools."))) > --=20 > 2.20.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXMeJmAAKCRDcUY/If5cW qs4FAQCKXNiv9TLg2rclBDH1uyiuDNPcR3z7/ZgOOSQG6HO6pwD+Opfnfin+bJV/ wVR6f1yOYff//8PVGLTDgHHbRpd5MQY= =myC2 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 30 13:53:06 2019 Received: (at 35483) by debbugs.gnu.org; 30 Apr 2019 17:53:06 +0000 Received: from localhost ([127.0.0.1]:42343 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLWwC-0007kS-Bz for submit@debbugs.gnu.org; Tue, 30 Apr 2019 13:53:06 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:45932) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLWw9-0007jz-NW for 35483@debbugs.gnu.org; Tue, 30 Apr 2019 13:53:02 -0400 Received: from localhost (178.113.135.181.wireless.dyn.drei.com [178.113.135.181]) by dd26836.kasserver.com (Postfix) with ESMTPSA id DD063336418D; Tue, 30 Apr 2019 19:52:59 +0200 (CEST) Date: Tue, 30 Apr 2019 19:52:54 +0200 From: Danny Milosavljevic To: Vagrant Cascadian Subject: Re: gnu: u-boot-tools: Only run full test suite on x86. Message-ID: <20190430195254.2a45be31@scratchpost.org> In-Reply-To: <87pnp4wfon.fsf@ponder> References: <87ef5lbh38.fsf@ponder> <87pnp4wfon.fsf@ponder> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/aZs46T8Y_dbWbzR1ZOD8vb0"; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35483 Cc: ludo@gnu.org, 35483@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.7 (-) --Sig_/aZs46T8Y_dbWbzR1ZOD8vb0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi Vagrant, Hi Ludo, On Mon, 29 Apr 2019 16:32:40 -0700 Vagrant Cascadian wrote: > I neglected to mention in my initial submission that the test suite has > failed on non-x86 architectures since I started testing u-boot on Guix a > year or so ago... >=20 > It blocks working support for veyron-speedy/Asus C201, and that would be > very nice to have fixed for 1.0, of course! >=20 > I may need to update the patch to exclude i686-linux from the full test > suite, as it seems with u-boot 2019.04 to also fail with 32-bit x86 > making some 64-bit assumptions... >=20 > Thanks for the review, if you can! I've reviewed it and found that also on i686 tests are not succeeding. So I've changed the check to only enable the respective parts of the tests for x86_64 and pushed it to guix master as commit 6f5be83cd7158e678602d62c27f26363df3e1649. Thanks! I'm not sure whether I should still cherry-pick it for 1.0, so I didn't yet. --Sig_/aZs46T8Y_dbWbzR1ZOD8vb0 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlzIi3YACgkQ5xo1VCww uqVS1gf/Xcqbprz4jOAfL5WJxt1qTCWA5LSCNJ/Jfe9UNwrwzXHBr8UDlhz8SkK0 Zni/zatJLm0VsF/QlAeV0W1Hwdb6mt4DoxQjHqbU9K7cEvLhcSf7ndLU7ok5fV0r PcItM9xFWdpKEJCoAZ7sXaHvVusyG1zi4a6TWQ9jvNEA5S8JxBd+QhRmIpARQC1E zRq72utO4SsTUVBsqutN28SAS/XQUvxh2pTBcTV8jPHq5HG4epIsa83we+nLR7gy fNkzNJ97i9atQWcVxDMrg72bvOvBBiPoyonyIxQnYHFtdoYhtCL2GgVqPyRhXg7g BF9k5S0KgGTypUE8qpivkA5XFPIaKQ== =RHVB -----END PGP SIGNATURE----- --Sig_/aZs46T8Y_dbWbzR1ZOD8vb0-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 30 13:54:38 2019 Received: (at 35483) by debbugs.gnu.org; 30 Apr 2019 17:54:39 +0000 Received: from localhost ([127.0.0.1]:42349 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLWxi-0007mc-Ma for submit@debbugs.gnu.org; Tue, 30 Apr 2019 13:54:38 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:46060) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLWxg-0007mT-8F for 35483@debbugs.gnu.org; Tue, 30 Apr 2019 13:54:36 -0400 Received: from localhost (178.113.135.181.wireless.dyn.drei.com [178.113.135.181]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 39875336418D; Tue, 30 Apr 2019 19:54:35 +0200 (CEST) Date: Tue, 30 Apr 2019 19:54:33 +0200 From: Danny Milosavljevic To: Vagrant Cascadian Subject: Re: gnu: u-boot-tools: Only run full test suite on x86. Message-ID: <20190430195433.1ac76679@scratchpost.org> In-Reply-To: <20190430195254.2a45be31@scratchpost.org> References: <87ef5lbh38.fsf@ponder> <87pnp4wfon.fsf@ponder> <20190430195254.2a45be31@scratchpost.org> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/jYwisxMkEthRUyI=20OanRI"; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35483 Cc: ludo@gnu.org, 35483@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.7 (-) --Sig_/jYwisxMkEthRUyI=20OanRI Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable > I've reviewed it and found that also on i686 tests are not succeeding. ... or at least they are succeeding with a lot of very serious warnings, some of which concerning stack alignment for variable arguments and shifts that are more than the width of the variable slot (which are undefined on the assembly level and do "funny" things on i686 if you try anyway). --Sig_/jYwisxMkEthRUyI=20OanRI Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlzIi9kACgkQ5xo1VCww uqWlKQgAgzfH6yZgs2nx+v2LP9QOLAHR+2G4DYsC/tdlW7ABDEaQhrSQv5Oig7jm kDTDYFZnydwi5HXKyA0Y+0zyvA3D2m4+XzX/hq5rP7ZqtD6OC9TW0zpKNJFEg4t5 gBeFUVS5sFXTgVFSfA8Dqr7ham+O2rBU171Da6B6qC0kwACYeB/IGnA2HKwd99yj O/6r/A+54cQzQqUmF2SIVgLeURaKqPG1lA+hvXnkdBCR3NCXwkT0uZztDh7zzEVh 6A/jVPPPoVciUh07Xp+odBaQthTmv45V7h2icKSsGL/co+W5kYZRZklKqgpH7whB 9lKe9UOB0BbPkk9KC7l3U0Pm/DdKyw== =gp1g -----END PGP SIGNATURE----- --Sig_/jYwisxMkEthRUyI=20OanRI-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 30 13:58:18 2019 Received: (at 35483) by debbugs.gnu.org; 30 Apr 2019 17:58:18 +0000 Received: from localhost ([127.0.0.1]:42363 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLX1F-0007t2-Rm for submit@debbugs.gnu.org; Tue, 30 Apr 2019 13:58:18 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:46324) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLX1E-0007ss-5K for 35483@debbugs.gnu.org; Tue, 30 Apr 2019 13:58:16 -0400 Received: from localhost (178.113.135.181.wireless.dyn.drei.com [178.113.135.181]) by dd26836.kasserver.com (Postfix) with ESMTPSA id D3794336418D for <35483@debbugs.gnu.org>; Tue, 30 Apr 2019 19:58:14 +0200 (CEST) Date: Tue, 30 Apr 2019 19:58:00 +0200 From: Danny Milosavljevic Subject: Re: gnu: u-boot-tools: Only run full test suite on x86. Message-ID: <20190430195800.6b87f0eb@scratchpost.org> In-Reply-To: <20190430195254.2a45be31@scratchpost.org> References: <87ef5lbh38.fsf@ponder> <87pnp4wfon.fsf@ponder> <20190430195254.2a45be31@scratchpost.org> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/Ek4LsDbkdws3A95RgXjCzj0"; protocol="application/pgp-signature" X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 35483 Cc: 35483@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: -0.5 (/) --Sig_/Ek4LsDbkdws3A95RgXjCzj0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable I'm leaving the bug report open since it's one thing if the tests are not succeeding because the *tests* are broken and another thing if the tests are not succeeding because the functionality it is testing is broken. At least on i686 u-boot-tools, the latter seems to be the case often. So before closing this bug report, let's bring this up upstream and also let's disable features in the u-boot configuration that are broken but we don't need anyway. --Sig_/Ek4LsDbkdws3A95RgXjCzj0 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlzIjKgACgkQ5xo1VCww uqVFlwf+OjMc6taSBPbEDkK6HnJWeH1VaxeWfJE4qI5evzBuvBNXW8CcH59GBvmL tIYOiJXy8ezieGgGStJbsS9h8x/ihXmG7UmNDsbZIs2aUthi3gABT9EX5OnsURFT OegwXeU4knTTdD+xFTvEH6DACGR1RwKVZQtmva+mvtYF1VpKR7hnzoP2ldueqiBR 9v1vqXPz0b36WS4+E19dLzNYtmPm9aWEEhU0Y2Qriy2eFWdNIdQ85TyBWdUJjpo1 Ft3LVMrplsTM2A4s6uib6eBTvKOR2Eq+FOMe4sowiagtwS2/B/4dv0sl9UbO6vQm FCfW8/rXKdY6WVmoHlYltonhxMZYzA== =cMBv -----END PGP SIGNATURE----- --Sig_/Ek4LsDbkdws3A95RgXjCzj0-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 30 17:08:27 2019 Received: (at 35483) by debbugs.gnu.org; 30 Apr 2019 21:08:27 +0000 Received: from localhost ([127.0.0.1]:42561 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLZzH-0004L6-1o for submit@debbugs.gnu.org; Tue, 30 Apr 2019 17:08:27 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:58434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLZzD-0004Ko-Ia for 35483@debbugs.gnu.org; Tue, 30 Apr 2019 17:08:24 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100e]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 15A031AA54; Tue, 30 Apr 2019 14:08:15 -0700 (PDT) From: Vagrant Cascadian To: Danny Milosavljevic Subject: Re: gnu: u-boot-tools: Only run full test suite on x86. In-Reply-To: <20190430195254.2a45be31@scratchpost.org> References: <87ef5lbh38.fsf@ponder> <87pnp4wfon.fsf@ponder> <20190430195254.2a45be31@scratchpost.org> Date: Tue, 30 Apr 2019 14:08:10 -0700 Message-ID: <87sgtzb3r9.fsf@ponder> 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: 35483 Cc: ludo@gnu.org, 35483@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 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On 2019-04-30, Danny Milosavljevic wrote: > On Mon, 29 Apr 2019 16:32:40 -0700 > Vagrant Cascadian wrote: > >> I neglected to mention in my initial submission that the test suite has >> failed on non-x86 architectures since I started testing u-boot on Guix a >> year or so ago... >>=20 >> It blocks working support for veyron-speedy/Asus C201, and that would be >> very nice to have fixed for 1.0, of course! >>=20 >> I may need to update the patch to exclude i686-linux from the full test >> suite, as it seems with u-boot 2019.04 to also fail with 32-bit x86 >> making some 64-bit assumptions... >>=20 >> Thanks for the review, if you can! > > I've reviewed it and found that also on i686 tests are not succeeding. > So I've changed the check to only enable the respective parts of the tests > for x86_64 and pushed it to guix master as > commit 6f5be83cd7158e678602d62c27f26363df3e1649. Thanks! > > I'm not sure whether I should still cherry-pick it for 1.0, so I didn't y= et. I got confirmation from serveral people on irc to cherry-pick it for 1.0, and with my newfound powers... have pushed it to the version-1.0.0 branch! live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXMi5OwAKCRDcUY/If5cW qimNAQDbnhgouk8fqG5SGC4xG/VFJueS6ZK6ICYGiWN57b4wlQEA0KzqGh6e+hK7 p6Rik8kUsjhEAxF5fuzQGE4TRGPJ8gM= =2Hm8 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 30 17:47:03 2019 Received: (at 35483) by debbugs.gnu.org; 30 Apr 2019 21:47:03 +0000 Received: from localhost ([127.0.0.1]:42651 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLaac-0005J6-Ts for submit@debbugs.gnu.org; Tue, 30 Apr 2019 17:47:03 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53776) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hLaab-0005Id-Kt for 35483@debbugs.gnu.org; Tue, 30 Apr 2019 17:47:01 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:55735) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hLaaV-0002jA-JK; Tue, 30 Apr 2019 17:46:55 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=42140 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hLaaV-0002tq-3f; Tue, 30 Apr 2019 17:46:55 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Vagrant Cascadian Subject: Re: gnu: u-boot-tools: Only run full test suite on x86. References: <87ef5lbh38.fsf@ponder> <87pnp4wfon.fsf@ponder> <20190430195254.2a45be31@scratchpost.org> <87sgtzb3r9.fsf@ponder> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 11 =?utf-8?Q?Flor=C3=A9al?= an 227 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Tue, 30 Apr 2019 23:46:53 +0200 In-Reply-To: <87sgtzb3r9.fsf@ponder> (Vagrant Cascadian's message of "Tue, 30 Apr 2019 14:08:10 -0700") Message-ID: <87imuvi2sy.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 35483 Cc: Danny Milosavljevic , 35483@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 (---) Vagrant Cascadian skribis: > On 2019-04-30, Danny Milosavljevic wrote: [...] >> I've reviewed it and found that also on i686 tests are not succeeding. >> So I've changed the check to only enable the respective parts of the tes= ts >> for x86_64 and pushed it to guix master as >> commit 6f5be83cd7158e678602d62c27f26363df3e1649. Thanks! >> >> I'm not sure whether I should still cherry-pick it for 1.0, so I didn't = yet. > > I got confirmation from serveral people on irc to cherry-pick it for > 1.0, and with my newfound powers... have pushed it to the version-1.0.0 > branch! Cool, thank you! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri May 03 11:40:42 2019 Received: (at control) by debbugs.gnu.org; 3 May 2019 15:40:42 +0000 Received: from localhost ([127.0.0.1]:49348 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hMaIj-0003ap-Pf for submit@debbugs.gnu.org; Fri, 03 May 2019 11:40:41 -0400 Received: from eggs.gnu.org ([209.51.188.92]:48443) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hMaIh-0003aW-8L for control@debbugs.gnu.org; Fri, 03 May 2019 11:40:39 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:51091) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMaIb-0003E0-PP for control@debbugs.gnu.org; Fri, 03 May 2019 11:40:33 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=57664 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hMaIb-0000v9-8K for control@debbugs.gnu.org; Fri, 03 May 2019 11:40:33 -0400 Date: Fri, 03 May 2019 17:40:31 +0200 Message-Id: <87tveba6mo.fsf@gnu.org> To: control@debbugs.gnu.org From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: control message for bug #35483 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) tags 35483 fixed close 35483 From unknown Sat Jun 21 10:30: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: Sat, 01 Jun 2019 11:24:08 +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