c6290e42bc
* Fix the substitutes tests.
20 lines
584 B
Bash
20 lines
584 B
Bash
# Instantiate.
|
|
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate substitutes.nix)
|
|
echo "store expr is $storeExpr"
|
|
|
|
# Find the output path.
|
|
outPath=$($TOP/src/nix-store/nix-store -qvv "$storeExpr")
|
|
echo "output path is $outPath"
|
|
|
|
regSub() {
|
|
(echo $1 && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld) | $TOP/src/nix-store/nix-store --substitute
|
|
}
|
|
|
|
# Register a substitute for the output path.
|
|
regSub $outPath $(pwd)/substituter.sh
|
|
|
|
|
|
$TOP/src/nix-store/nix-store -rvv "$storeExpr"
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
if test "$text" != "Hallo Wereld"; then exit 1; fi
|