tests: Test the exit code of 'guix environment'.

This is a followup to d2cef62.

* tests/guix-environment.sh: Add test for the exit code.
This commit is contained in:
Ludovic Courtès 2015-07-07 22:51:33 +02:00
parent a8afb9aed3
commit 4931dfcdfd
1 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,14 @@ test "`wc -l < "$tmpdir/a"`" = 1
cmp "$tmpdir/a" "$tmpdir/b"
# Make sure the exit value is preserved.
if guix environment --ad-hoc guile-bootstrap --pure -E 'guile -c "(exit 42)"'
then
false
else
test $? = 42
fi
if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
then
# Compute the build environment for the initial GNU Make.