mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
guix package: Never remove the current generation and warn about it.
Fixes <http://bugs.gnu.org/19978>. Reported by taylanbayirli@gmail.com (Taylan Ulrich Bayırlı/Kammer). * guix/scripts/package.scm (delete-matching-generations): Warn when CURRENT is in NUMBERS, and always remove it before calling 'delete-generations'. * tests/guix-package.sh: Add --switch-generation=2 invocation before --delete-generations=3 invocation. Add --delete-generations=1.. test case.
This commit is contained in:
parent
381ac93b5e
commit
d26eb84d14
2 changed files with 21 additions and 3 deletions
|
@ -161,6 +161,9 @@ then
|
|||
guix package --bootstrap -p "$profile" -i guile-bootstrap -i gcc-bootstrap
|
||||
guix package --search-paths -p "$profile" | grep LIBRARY_PATH
|
||||
|
||||
# Roll back so we can delete #3 below.
|
||||
guix package -p "$profile" --switch-generation=2
|
||||
|
||||
# Delete the third generation and check that it was actually deleted.
|
||||
guix package -p "$profile" --delete-generations=3
|
||||
test -z "`guix package -p "$profile" -l 3`"
|
||||
|
@ -212,6 +215,14 @@ if guix package -p "$profile" --delete-generations=12m;
|
|||
then false; else true; fi
|
||||
test "`readlink_base "$profile"`" = "$generation"
|
||||
|
||||
# The following command should not delete the current generation, even though
|
||||
# it matches the given pattern (see <http://bugs.gnu.org/19978>.) And since
|
||||
# there's nothing else to delete, it should just fail.
|
||||
guix package --list-generations -p "$profile"
|
||||
if guix package --bootstrap -p "$profile" --delete-generations=1..
|
||||
then false; else true; fi
|
||||
test "`readlink_base "$profile"`" = "$generation"
|
||||
|
||||
# Make sure $profile is a GC root at this point.
|
||||
real_profile="`readlink -f "$profile"`"
|
||||
if guix gc -d "$real_profile"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue