about summary refs log blame commit diff
path: root/tests/fall-back.sh
blob: a183e12f670c874499b396d38a217420885e740b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
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