mirror of
https://github.com/NixOS/nix.git
synced 2025-11-24 03:09:35 +01:00
* Add a test to check that when we cannot realise a closure
expression, we should invalidate it and go back to the derivation for which it is a successor.
This commit is contained in:
parent
ec32627621
commit
a29c8ac51c
3 changed files with 26 additions and 3 deletions
14
tests/fall-back.sh
Normal file
14
tests/fall-back.sh
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate fall-back.nix)
|
||||
|
||||
echo "store expr is $storeExpr"
|
||||
|
||||
# Register a non-existant successor.
|
||||
suc=$NIX_STORE_DIR/deadbeafdeadbeafdeadbeafdeadbeaf-s.store
|
||||
$TOP/src/nix-store/nix-store --successor $storeExpr $suc
|
||||
|
||||
outPath=$($TOP/src/nix-store/nix-store -qnfvvvvv "$storeExpr")
|
||||
|
||||
echo "output path is $outPath"
|
||||
|
||||
text=$(cat "$outPath"/hello)
|
||||
if test "$text" != "Hello World!"; then exit 1; fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue