[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: tests: Fix "package-transitive-supported-systems,
From: |
guix-commits |
Subject: |
branch master updated: tests: Fix "package-transitive-supported-systems, implicit inputs". |
Date: |
Fri, 15 Sep 2023 16:06:07 -0400 |
This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new edca2863bc tests: Fix "package-transitive-supported-systems, implicit
inputs".
edca2863bc is described below
commit edca2863bcb52388fe454e14136264a4f7490273
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Fri Sep 15 21:57:57 2023 +0200
tests: Fix "package-transitive-supported-systems, implicit inputs".
This is a follow-up to commit
0e08ad7f19d5b29a4883468552b5d213a7bdb66e
gnu: linux-libre-headers: Remove i586-gnu from supported-systems.
See also <https://issues.guix.gnu.org/65755>.
* tests/packages.scm ("package-transitive-supported-systems, implicit
inputs"):
Filter expectiation with target-linux?, as %current-system is linux.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
tests/packages.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/packages.scm b/tests/packages.scm
index 2b4f9f8e90..a623628447 100644
--- a/tests/packages.scm
+++ b/tests/packages.scm
@@ -494,7 +494,7 @@
(member "boo" keys))))
(test-equal "package-transitive-supported-systems, implicit inputs"
- %supported-systems
+ (filter target-linux? %supported-systems)
;; Here GNU-BUILD-SYSTEM adds implicit inputs that build only on
;; %SUPPORTED-SYSTEMS. Thus the others must be ignored.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: tests: Fix "package-transitive-supported-systems, implicit inputs".,
guix-commits <=