summaryrefslogtreecommitdiff
path: root/tests/guix-build.sh
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-10-03 15:24:21 +0200
committerLudovic Courtès <ludo@gnu.org>2016-10-03 15:24:21 +0200
commitd223ac4acc51602e1be91d611ea2b4266edf6ee3 (patch)
treec7d7e80de89b862e5c4c6ae449b95463a2859e2f /tests/guix-build.sh
parent2b4363891c70bbf641bff8ff0a6fb7526babd5b9 (diff)
downloadgnu-guix-d223ac4acc51602e1be91d611ea2b4266edf6ee3.tar
gnu-guix-d223ac4acc51602e1be91d611ea2b4266edf6ee3.tar.gz
tests: Adjust 'guix build -S' test for source-less packages.
This is a followup to 8a54c0ec694ad6e22b155d167552b8fd0914e82d. * tests/guix-build.sh: Allow 'guix build -S' to succeed with source-less packages. Check that the result is the empty string.
Diffstat (limited to 'tests/guix-build.sh')
-rw-r--r--tests/guix-build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/guix-build.sh b/tests/guix-build.sh
index 9e9788bca0..e1ec560641 100644
--- a/tests/guix-build.sh
+++ b/tests/guix-build.sh
@@ -26,9 +26,9 @@ guix build --version
if guix build -e +;
then false; else true; fi
-# Should fail because this is a source-less package.
-if guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S
-then false; else true; fi
+# Source-less packages are accepted; they just return nothing.
+guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S
+test "`guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S`" = ""
# Should pass.
guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)' | \