summaryrefslogtreecommitdiff
path: root/tests/guix-package.sh
diff options
context:
space:
mode:
authorJanneke Nieuwenhuizen <janneke@gnu.org>2024-12-14 00:30:09 +0100
committerJanneke Nieuwenhuizen <janneke@gnu.org>2024-12-14 00:34:28 +0100
commit4a6ca998244f280958207e8ac15bae6e75943aca (patch)
tree91d120ca3bc4477d9d31201430053d533060793e /tests/guix-package.sh
parent5aa4f67ed1e4745997af8d04937dd236d830833a (diff)
tests: guix-package: Fix guix package --search test.
This is a follow-up to commit 6f8c8a86d827627f503a803381bce7fbcf8f39a0 gnu: Fix synopsis in miscelaneous packages. Change-Id: I5f44e07544f80973fa6b306b2dcdf42ac3b56ad6 * tests/guix-package.sh: Search for GNU hello's changed synopsis "Example GNU package". Change-Id: I79f606afee348cb6d57d9c0d08e15cd9267d5ceb
Diffstat (limited to 'tests/guix-package.sh')
-rw-r--r--tests/guix-package.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/guix-package.sh b/tests/guix-package.sh
index 945d59cdfb7..000cd4df11e 100644
--- a/tests/guix-package.sh
+++ b/tests/guix-package.sh
@@ -2,6 +2,8 @@
2# Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org> 2# Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org>
3# Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> 3# Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
4# Copyright © 2022 Josselin Poiret <dev@jpoiret.xyz> 4# Copyright © 2022 Josselin Poiret <dev@jpoiret.xyz>
5# Copyright © 2022 Josselin Poiret <dev@jpoiret.xyz>
6# Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
5# 7#
6# This file is part of GNU Guix. 8# This file is part of GNU Guix.
7# 9#
@@ -124,7 +126,7 @@ guix package --show=emacs@42 && false
124# Search. 126# Search.
125LC_MESSAGES=C 127LC_MESSAGES=C
126export LC_MESSAGES 128export LC_MESSAGES
127test "`guix package -s "An example GNU package" | grep ^name:`" = \ 129test "`guix package -s "Example GNU package" | grep ^name:`" = \
128 "name: hello" 130 "name: hello"
129test -z "`guix package -s "n0t4r341p4ck4g3"`" 131test -z "`guix package -s "n0t4r341p4ck4g3"`"
130 132