tests: Actually run 'tests/guix-environment-container.sh'.

This test was skipped since the switch to Guile 3 because
'assert-container-features' would be inlined and thus accessing it with
@@ would fail with an unbound-variable error.

* guix/scripts/environment.scm (assert-container-features): Export.
* tests/guix-environment-container.sh: Use single '@'.
This commit is contained in:
Ludovic Courtès 2020-06-20 12:54:05 +02:00
parent cdea526556
commit 90f496be9a
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
2 changed files with 3 additions and 2 deletions

View File

@ -48,7 +48,8 @@
#:use-module (srfi srfi-26)
#:use-module (srfi srfi-37)
#:use-module (srfi srfi-98)
#:export (guix-environment))
#:export (assert-container-features
guix-environment))
;; Protect some env vars from purification. Borrowed from nix-shell.
(define %precious-variables

View File

@ -24,7 +24,7 @@ set -e
guix environment --version
if ! guile -c '((@@ (guix scripts environment) assert-container-features))'
if ! guile -c '((@ (guix scripts environment) assert-container-features))'
then
# User containers are not supported; skip this test.
exit 77