diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T11·07+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-31T11·07+0200 |
commit | 759ac27f282182075047887dd7574749eea2488a (patch) | |
tree | e7fcf89f1def8eb2186f487d947139e1ac58334f /tests/nix-profile.sh | |
parent | c9ff3747db50ad31465e0b67ab9d0ffff36d2e86 (diff) |
Fix nix-profile test in a chroot
http://hydra.nixos.org/build/36462078
Diffstat (limited to 'tests/nix-profile.sh')
-rw-r--r-- | tests/nix-profile.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/nix-profile.sh b/tests/nix-profile.sh index 2cc3910ba12d..b244815e2909 100644 --- a/tests/nix-profile.sh +++ b/tests/nix-profile.sh @@ -1,10 +1,14 @@ source common.sh +sed -e "s|@localstatedir@|$TEST_ROOT/profile-var|g" -e "s|@coreutils@|$coreutils|g" < ../scripts/nix-profile.sh.in > $TEST_ROOT/nix-profile.sh + user=$(whoami) -rm -rf $TEST_HOME +rm -rf $TEST_HOME $TEST_ROOT/profile-var mkdir -p $TEST_HOME -USER=$user $SHELL -e -c ". ../scripts/nix-profile.sh" -USER=$user $SHELL -e -c ". ../scripts/nix-profile.sh" # test idempotency +USER=$user $SHELL -e -c ". $TEST_ROOT/nix-profile.sh; set" +USER=$user $SHELL -e -c ". $TEST_ROOT/nix-profile.sh" # test idempotency [ -L $TEST_HOME/.nix-profile ] [ -e $TEST_HOME/.nix-channels ] +[ -e $TEST_ROOT/profile-var/nix/gcroots/per-user/$user ] +[ -e $TEST_ROOT/profile-var/nix/profiles/per-user/$user ] |