* Regression test for NIX-31.

This commit is contained in:
Eelco Dolstra 2006-02-17 17:03:19 +00:00
parent 889ef564fd
commit 4ddd5ff39c
1 changed files with 16 additions and 0 deletions

View File

@ -75,3 +75,19 @@ $nixenv -p $profiles/test --delete-generations old
$NIX_BIN_DIR/nix-collect-garbage
test -e "$outPath10"
if test -e "$outPath20"; then false; fi
# Uninstall everything
$nixenv -p $profiles/test -f ./user-envs.nix -e '*'
test "$($nixenv -p $profiles/test -q | wc -l)" -eq 0
# Installing "foo" should only install the newest foo.
$nixenv -p $profiles/test -f ./user-envs.nix -i foo
test "$($nixenv -p $profiles/test -q | grep foo- | wc)" -eq 1
$nixenv -p $profiles/test -q | grep -q foo-2.0
# Installing "*" should install one foo and one bar.
$nixenv -p $profiles/test -f ./user-envs.nix -e '*'
$nixenv -p $profiles/test -f ./user-envs.nix -i '*'
test "$($nixenv -p $profiles/test -q | wc)" -eq 2
$nixenv -p $profiles/test -q | grep -q foo-2.0
$nixenv -p $profiles/test -q | grep -q bar-0.1.1