diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-05-10 23:04:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-05-10 23:04:39 +0200 |
commit | 741c70c63e7a8b3a2b259c6718152c888841c722 (patch) | |
tree | 9fcde006336f4f95021d9ac14c2e7bbfb68b19b1 /tests | |
parent | 94a4b3b9f289963949c197f846ec1882d75f5a1e (diff) | |
download | guix-741c70c63e7a8b3a2b259c6718152c888841c722.tar guix-741c70c63e7a8b3a2b259c6718152c888841c722.tar.gz |
package: Store the output path of packages installed with `-e'.
* guix/scripts/package.scm (guix-package)[process-actions](package->tuple):
Put the output path in the tuple, not the derivation path.
* tests/guix-package.sh: Add test.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-package.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/guix-package.sh b/tests/guix-package.sh index 5a514a0dc0..0eeec51e79 100644 --- a/tests/guix-package.sh +++ b/tests/guix-package.sh @@ -117,6 +117,7 @@ then guix package --bootstrap -p "$profile" -e "$boot_make" test "`readlink_base "$profile"`" = "$profile-2-link" test -x "$profile/bin/guile" && test -x "$profile/bin/make" + grep "`guix build -e "$boot_make"`" "$profile/manifest" # Make a "hole" in the list of generations, and make sure we can # roll back "over" it. |