From 9d850eb2f3b067253ea14f36d7e5b5ffcb67af80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 15 Apr 2025 09:44:47 +0200 Subject: [PATCH] =?UTF-8?q?tests:=20Update=20=E2=80=98guix=20build=20-P1?= =?UTF-8?q?=E2=80=99=20test.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes a regression introduced with 63b635e073415f544177159fbbcf07cb327b1d77. * tests/guix-build.sh: Replace libgit2 by libgcrypt in ‘-P1’ example. Change-Id: Idb2a18dd8455ee6bfda14284834a6f37ccec6a05 --- tests/guix-build.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/guix-build.sh b/tests/guix-build.sh index 6d46d571a96..343e6662a3b 100644 --- a/tests/guix-build.sh +++ b/tests/guix-build.sh @@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2012-2014, 2016-2024 Ludovic Courtès +# Copyright © 2012-2014, 2016-2025 Ludovic Courtès # Copyright © 2020 Marius Bakke # Copyright © 2021 Chris Marusich # @@ -197,9 +197,10 @@ test `guix build -D hello -d \ | wc -l` -ge 3 # Building the dependents. -test `guix build -P1 libgit2 -P1 libssh -d \ - | grep -e 'guile-git.*\.drv$' -e 'guile-ssh.*\.drv$' \ - -e 'libgit2-[0-9].*\.drv$' -e 'libssh-[0-9].*\.drv$' \ +test `guix build -P1 libgcrypt -P1 libssh -d \ + | grep -e 'guile-gcrypt.*\.drv$' -e 'guile-ssh.*\.drv$' \ + -e 'libgcrypt-[0-9].*\.drv$' -e 'libssh-[0-9].*\.drv$' \ + | sort -u \ | wc -l` -eq 4 # Unbound variable in thunked field.