diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-07T12·52+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-07T12·52+0100 |
commit | 2ef7e2e795c57eaa37932fd2961952815e8b67df (patch) | |
tree | cc6842c177dd77e44d3e3da7fbbe47e627d18996 /tests/repair.sh | |
parent | 02a66b3fd7041d32a61852b5be41802920c59d2f (diff) |
Fix repair test
http://hydra.nixos.org/build/30001635
Diffstat (limited to 'tests/repair.sh')
-rw-r--r-- | tests/repair.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/repair.sh b/tests/repair.sh index ae82b649c6ac..92f2f8fe60a5 100644 --- a/tests/repair.sh +++ b/tests/repair.sh @@ -18,6 +18,18 @@ if nix-store --verify --check-contents -v; then exit 1 fi +# The path can be repaired by rebuilding the derivation. +nix-store --verify --check-contents --repair + +nix-store --verify-path $path2 + +# Re-corrupt and delete the deriver. Now --verify --repair should +# not work. +chmod u+w $path2 +touch $path2/bad + +nix-store --delete $(nix-store -qd $path2) + if nix-store --verify --check-contents --repair; then echo "nix-store --verify --repair succeeded unexpectedly" >&2 exit 1 |