# List of source files which contain translatable strings. These should be # only package modules (currently it's only a subset of them, but eventually # all of them should be listed here.) Strings of the tools are in 'po/guix'. gnu/packages/abiword.scm gnu/packages/aspell.scm gnu/packages/audio.scm gnu/packages/backup.scm gnu/packages/base.scm gnu/packages/bittorrent.scm gnu/packages/certs.scm gnu/packages/compression.scm gnu/packages/databases.scm gnu/packages/debug.scm gnu/packages/dejagnu.scm gnu/packages/games.scm gnu/packages/gcc.scm gnu/packages/gettext.scm gnu/packages/gimp.scm gnu/packages/gnome.scm gnu/packages/gnuzilla.scm gnu/packages/gtk.scm gnu/packages/guile.scm gnu/packages/imagemagick.scm gnu/packages/image.scm gnu/packages/image-viewers.scm gnu/packages/inkscape.scm gnu/packages/jemalloc.scm gnu/packages/key-mon.scm gnu/packages/less.scm gnu/packages/lesstif.scm gnu/packages/libreoffice.scm gnu/packages/linux.scm gnu/packages/lout.scm gnu/packages/messaging.scm gnu/packages/mpd.scm gnu/packages/netpbm.scm gnu/packages/nettle.scm gnu/packages/networking.scm gnu/packages/pdf.scm gnu/packages/pem.scm gnu/packages/perl.scm gnu/packages/photo.scm gnu/packages/ratpoison.scm gnu/packages/readline.scm gnu/packages/scanner.scm gnu/packages/scheme.scm gnu/packages/search.scm gnu/packages/serveez.scm gnu/packages/shells.scm gnu/packages/telephony.scm gnu/packages/tex.scm gnu/packages/texinfo.scm gnu/packages/textutils.scm gnu/packages/version-control.scm gnu/packages/virtualization.scm gnu/packages/webkit.scm gnu/packages/web.scm gnu/packages/wordnet.scm gnu/packages/xiph.scm gnu/services/base.scm gnu/services/certbot.scm gnu/services/networking.scm gnu/services/version-control.scm idden' name='id' value='eb0f35e16db46642550cddca9f13c7c39f6c2da5'/>
path: root/tests/guix-package-aliases.sh
AgeCommit message (Expand)Author
2023-04-21tests: Relax two tests that expected a non-zero error code....* tests/guix-package-aliases.sh: "guix upgrade foo bar" has always returned zero; adjust accordingly. * tests/guix-refresh.sh: "guix refresh -t test idutils" and similar return zero; adjust accordingly. Ludovic Courtès
2023-04-21tests: Fix checks for expected failures....Addresses <https://issues.guix.gnu.org/62406>. With 'set -e', a return status inverted with '!' does not cause the shell to exit immediately. Instead use '&& false' to indicate an expected failure. * tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment-container.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh, tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with '... && false' or `test ! ...` as appropriate. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Eric Bavier