From ea4eeeed03b20f547b0ff26e2105035dd32d54e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 23 Sep 2025 14:31:26 +0200 Subject: [PATCH] =?UTF-8?q?tests:=20Adjust=20=E2=80=98package-transitive-s?= =?UTF-8?q?upported-systems=E2=80=99=20test.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This test broke with commit 8c9493cb311a994c2565f71fb6270a1b26d8a644. * tests/packages.scm ("package-transitive-supported-systems, implicit inputs"): Change ‘%current-system’ to “riscv64-linux”. Change-Id: Ia6d69f086cffea4144d2f032038b27ec91e904f3 --- tests/packages.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/packages.scm b/tests/packages.scm index 6ff7b265844..0e0a1bd16eb 100644 --- a/tests/packages.scm +++ b/tests/packages.scm @@ -511,7 +511,11 @@ (build-system gnu-build-system) (supported-systems `("does-not-exist" "foobar" ,@%supported-systems))))) - (parameterize ((%current-system "armhf-linux")) ; a traditionally-bootstrapped architecture + ;; For '%current-system', pick an old-style-bootstrap (not full-source + ;; bootstrap) architecture, and one that uses a version of + ;; 'libstdc++-boot0' that has all of %SUPPORTED-SYSTEMS in its + ;; 'supported-systems' field. + (parameterize ((%current-system "riscv64-linux")) (package-transitive-supported-systems p)))) (test-equal "package-transitive-supported-systems: reduced binary seed, implicit inputs"