From edca2863bcb52388fe454e14136264a4f7490273 Mon Sep 17 00:00:00 2001 From: Janneke Nieuwenhuizen Date: Fri, 15 Sep 2023 21:57:57 +0200 Subject: [PATCH] tests: Fix "package-transitive-supported-systems, implicit inputs". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a follow-up to commit 0e08ad7f19d5b29a4883468552b5d213a7bdb66e gnu: linux-libre-headers: Remove i586-gnu from supported-systems. See also . * 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 --- 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.