about summary refs log tree commit diff
path: root/tests/fall-back.sh
blob: e4a39421772b2309a9f34fd7d6176c7da47439f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate fall-back.nix)

echo "store expr is $storeExpr"

# Register a non-existant successor (and a nox-existant substitute).
suc=$NIX_STORE_DIR/deadbeafdeadbeafdeadbeafdeadbeaf-s.store
(echo $suc && echo $NIX_STORE_DIR/ffffffffffffffffffffffffffffffff.store && echo "/bla" && echo 0) | $TOP/src/nix-store/nix-store --substitute
$TOP/src/nix-store/nix-store --successor $storeExpr $suc

outPath=$($TOP/src/nix-store/nix-store -qnf "$storeExpr")

echo "output path is $outPath"

text=$(cat "$outPath"/hello)
if test "$text" != "Hello World!"; then exit 1; fi