diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-05-07 14:04:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-05-07 14:04:19 +0200 |
commit | d26727a143fab0dded1dbc848899270dbacd5dad (patch) | |
tree | 23c29b5c322a960768c4624a6350fc5602222dd1 /tests | |
parent | 91a56b4ab5e714e230c0088fb9f5ce0519efe1a0 (diff) | |
download | guix-d26727a143fab0dded1dbc848899270dbacd5dad.tar guix-d26727a143fab0dded1dbc848899270dbacd5dad.tar.gz |
pack: Fix handling of '-e'.
Fixes a regression introduced in
aad16cc1965ab3488449c262455eb29b15c77e95.
Reported by Julien Lepiller.
* guix/scripts/pack.scm (guix-pack)[manifest-from-args]: In
'match-lambda', add clause for single packages.
* tests/guix-pack.sh: Add test for '-e'.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-pack.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/guix-pack.sh b/tests/guix-pack.sh index ec56ac96a2..5584c10e00 100644 --- a/tests/guix-pack.sh +++ b/tests/guix-pack.sh @@ -35,8 +35,11 @@ export GUIX_BUILD_OPTIONS # Build a tarball with no compression. guix pack --compression=none --bootstrap guile-bootstrap -# Build a tarball (with compression). -guix pack --bootstrap guile-bootstrap +# Build a tarball (with compression). Check that '-e' works as well. +out1="`guix pack --bootstrap guile-bootstrap`" +out2="`guix pack --bootstrap -e '(@ (gnu packages bootstrap) %bootstrap-guile)'`" +test -n "$out1" +test "$out1" = "$out2" # Build a tarball with a symlink. the_pack="`guix pack --bootstrap -S /opt/gnu/bin=bin guile-bootstrap`" |