diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2025-09-23 14:31:26 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-23 14:53:36 +0200 |
| commit | ea4eeeed03b20f547b0ff26e2105035dd32d54e3 (patch) | |
| tree | 7964aa3ef196a496f4d67d38b913a943441872a7 /tests/packages.scm | |
| parent | 7d10553db78b0475542b32522b2ab9a3c5b9ea58 (diff) | |
tests: Adjust ‘package-transitive-supported-systems’ test.
This test broke with commit 8c9493cb311a994c2565f71fb6270a1b26d8a644.
* tests/packages.scm ("package-transitive-supported-systems, implicit inputs"):
Change ‘%current-system’ to “riscv64-linux”.
Change-Id: Ia6d69f086cffea4144d2f032038b27ec91e904f3
Diffstat (limited to 'tests/packages.scm')
| -rw-r--r-- | tests/packages.scm | 6 |
1 files changed, 5 insertions, 1 deletions
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" |
