2004-06-24 12:56:24 +00:00
|
|
|
# Instantiate.
|
2004-06-24 13:40:38 +00:00
|
|
|
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate substitutes2.nix)
|
2004-06-24 12:56:24 +00:00
|
|
|
echo "store expr is $storeExpr"
|
|
|
|
|
|
|
|
# Find the output path.
|
|
|
|
outPath=$($TOP/src/nix-store/nix-store -qvvvvv "$storeExpr")
|
|
|
|
echo "output path is $outPath"
|
|
|
|
|
2004-12-20 14:38:04 +00:00
|
|
|
# Build the substitute program.
|
|
|
|
subProgram=$($TOP/src/nix-store/nix-store -qnf \
|
|
|
|
$($TOP/src/nix-instantiate/nix-instantiate substituter.nix))/substituter
|
|
|
|
echo "substitute program is $subProgram"
|
2004-06-24 12:56:24 +00:00
|
|
|
|
2004-12-20 14:38:04 +00:00
|
|
|
# Build the failing substitute program.
|
|
|
|
subProgram2=$($TOP/src/nix-store/nix-store -qnf \
|
|
|
|
$($TOP/src/nix-instantiate/nix-instantiate substituter2.nix))/substituter
|
|
|
|
echo "failing substitute program is $subProgram2"
|
2004-06-24 12:56:24 +00:00
|
|
|
|
|
|
|
regSub() {
|
2004-12-20 14:38:04 +00:00
|
|
|
(echo $1 && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld) | $TOP/src/nix-store/nix-store --substitute
|
2004-06-24 12:56:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Register a fake successor, and a substitute for it.
|
2004-06-24 13:40:38 +00:00
|
|
|
suc=$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab-s.store
|
2004-12-20 14:38:04 +00:00
|
|
|
regSub $suc $subProgram
|
2004-06-24 12:56:24 +00:00
|
|
|
$TOP/src/nix-store/nix-store --successor $storeExpr $suc
|
|
|
|
|
|
|
|
# Register a failing substitute for it (it takes precedence).
|
2004-12-20 14:38:04 +00:00
|
|
|
regSub $suc $subProgram2
|
2004-06-24 12:56:24 +00:00
|
|
|
|
|
|
|
# Register a substitute for the output path.
|
2004-12-20 14:38:04 +00:00
|
|
|
regSub $outPath $subProgram
|
2004-06-24 12:56:24 +00:00
|
|
|
|
|
|
|
# Register another substitute for the output path. This one will
|
|
|
|
# produce other output.
|
2004-12-20 14:38:04 +00:00
|
|
|
regSub $outPath $subProgram2
|
2004-06-24 12:56:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
$TOP/src/nix-store/nix-store -rvvvvv "$storeExpr"
|
|
|
|
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
|
|
if test "$text" != "Foo Hallo Wereld"; then exit 1; fi
|