summaryrefslogtreecommitdiff
path: root/tests/guix-gc.sh
diff options
context:
space:
mode:
authorEric Bavier <bavier@posteo.net>2023-04-20 00:11:27 -0500
committerLudovic Courtès <ludo@gnu.org>2023-04-21 16:16:38 +0200
commit37dd69b44511dc73eb04bdebe8d82c9a0386338e (patch)
treed20ecc2b15659ed2345f00beb39170a5365a7051 /tests/guix-gc.sh
parenta09c7da8f8d8e732f969cf0a09aaa78f87032ab1 (diff)
tests: 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>
Diffstat (limited to 'tests/guix-gc.sh')
-rw-r--r--tests/guix-gc.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/guix-gc.sh b/tests/guix-gc.sh
index f40619876d4..675a13115d9 100644
--- a/tests/guix-gc.sh
+++ b/tests/guix-gc.sh
@@ -36,11 +36,11 @@ unset out
36# For some operations, passing extra arguments is an error. 36# For some operations, passing extra arguments is an error.
37for option in "" "-C 500M" "--verify" "--optimize" "--list-roots" 37for option in "" "-C 500M" "--verify" "--optimize" "--list-roots"
38do 38do
39 ! guix gc $option whatever 39 guix gc $option whatever && false
40done 40done
41 41
42# This should fail. 42# This should fail.
43! guix gc --verify=foo 43guix gc --verify=foo && false
44 44
45# Check the references of a .drv. 45# Check the references of a .drv.
46drv="`guix build guile-bootstrap -d`" 46drv="`guix build guile-bootstrap -d`"
@@ -51,7 +51,7 @@ guix gc --references "$drv" | grep -e -bash
51guix gc --references "$out" 51guix gc --references "$out"
52guix gc --references "$out/bin/guile" 52guix gc --references "$out/bin/guile"
53 53
54! guix gc --references /dev/null; 54guix gc --references /dev/null && false
55 55
56# Check derivers. 56# Check derivers.
57guix gc --derivers "$out" | grep "$drv" 57guix gc --derivers "$out" | grep "$drv"
@@ -62,7 +62,7 @@ test -f "$drv"
62 62
63guix gc --list-dead | grep "$drv" 63guix gc --list-dead | grep "$drv"
64guix gc --delete "$drv" 64guix gc --delete "$drv"
65! test -f "$drv" 65test ! -f "$drv"
66 66
67# Add a .drv, register it as a root. 67# Add a .drv, register it as a root.
68drv="`guix build --root=guix-gc-root lsh -d`" 68drv="`guix build --root=guix-gc-root lsh -d`"
@@ -71,18 +71,18 @@ test -f "$drv" && test -L guix-gc-root
71guix gc --list-roots | grep "$PWD/guix-gc-root" 71guix gc --list-roots | grep "$PWD/guix-gc-root"
72 72
73guix gc --list-live | grep "$drv" 73guix gc --list-live | grep "$drv"
74! guix gc --delete "$drv"; 74guix gc --delete "$drv" && false
75 75
76rm guix-gc-root 76rm guix-gc-root
77guix gc --list-dead | grep "$drv" 77guix gc --list-dead | grep "$drv"
78guix gc --delete "$drv" 78guix gc --delete "$drv"
79! test -f "$drv" 79test ! -f "$drv"
80 80
81# Try a random collection. 81# Try a random collection.
82guix gc -C 1KiB 82guix gc -C 1KiB
83 83
84# Check trivial error cases. 84# Check trivial error cases.
85! guix gc --delete /dev/null; 85guix gc --delete /dev/null && false
86 86
87# Bug #19757 87# Bug #19757
88out="`guix build guile-bootstrap`" 88out="`guix build guile-bootstrap`"
@@ -90,14 +90,14 @@ test -d "$out"
90 90
91guix gc --delete "$out" 91guix gc --delete "$out"
92 92
93! test -d "$out" 93test ! -d "$out"
94 94
95out="`guix build guile-bootstrap`" 95out="`guix build guile-bootstrap`"
96test -d "$out" 96test -d "$out"
97 97
98guix gc --delete "$out/" 98guix gc --delete "$out/"
99 99
100! test -d "$out" 100test ! -d "$out"
101 101
102out="`guix build guile-bootstrap`" 102out="`guix build guile-bootstrap`"
103test -d "$out" 103test -d "$out"