digraph "Guix package" { "72851008" [label = "coreutils-8.25", shape = box, fontname = "dejavu sans"]; "72851008" -> "49728512" [color = darkseagreen]; "72851008" -> "74872512" [color = darkseagreen]; "72851008" -> "53180864" [color = darkseagreen]; "72851008" -> "75199232" [color = darkseagreen]; "49728512" [label = "perl-5.24.0", shape = box, fontname = "dejavu sans"]; "74872512" [label = "acl-2.2.52", shape = box, fontname = "dejavu sans"]; "74872512" -> "74873280" [color = red]; "74872512" -> "49728512" [color = red]; "74872512" -> "74872704" [color = red]; "74873280" [label = "gettext-minimal-0.19.8.1", shape = box, fontname = "dejavu sans"]; "74873280" -> "41550784" [color = cyan3]; "41550784" [label = "expat-2.2.0", shape = box, fontname = "dejavu sans"]; "74872704" [label = "attr-2.4.47", shape = box, fontname = "dejavu sans"]; "74872704" -> "74873280" [color = cyan3]; "74872704" -> "49728512" [color = cyan3]; "53180864" [label = "gmp-6.1.1", shape = box, fontname = "dejavu sans"]; "53180864" -> "50262784" [color = darkgoldenrod]; "50262784" [label = "m4-1.4.17", shape = box, fontname = "dejavu sans"]; "75199232" [label = "libcap-2.24", shape = box, fontname = "dejavu sans"]; "75199232" -> "49728512" [color = blue]; "75199232" -> "74872704" [color = blue]; } cd4c3176225204c505d657'>treecommitdiff
path: root/tests/guix-build-branch.sh
AgeCommit message (Expand)Author
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
2022-10-22tests: 'guix build --with-commit' output no longer refers to the tag ID....This is a followup to 46f7011591601b4783b2dc2c7252c41564ca0140. * tests/guix-build-branch.sh: Replace tag ID by commit ID. Ludovic Courtès