tests: Skip 'guix-container-environment.sh' when support is missing.

Fixes <http://bugs.gnu.org/21410>.
Reported by Alex Vong <alexvong1995@gmail.com>.

* tests/guix-environment-container.sh: Exit with 77 when
'((@@ (guix scripts environment) assert-container-features))' fails.
master
Ludovic Courtès 2015-11-21 21:44:41 +01:00
parent aabe6d3801
commit 6493fd0458
1 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,12 @@ set -e
guix environment --version
if ! guile -c '((@@ (guix scripts environment) assert-container-features))'
then
# User containers are not supported; skip this test.
exit 77
fi
tmpdir="t-guix-environment-$$"
trap 'rm -r "$tmpdir"' EXIT