1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-09 03:43:54 +02:00

* Fix the tests.

This commit is contained in:
Eelco Dolstra 2007-08-13 13:15:02 +00:00
parent 3757ee589f
commit 550ba9ebb4
12 changed files with 67 additions and 63 deletions

View file

@ -1,22 +1,20 @@
source common.sh
clearStore
# Instantiate.
drvPath=$($nixinstantiate substitutes.nix)
drvPath=$($nixinstantiate simple.nix)
echo "derivation is $drvPath"
# Find the output path.
outPath=$($nixstore -qvv "$drvPath")
echo "output path is $outPath"
regSub() {
(echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $nixstore --register-substitutes
}
# Register a substitute for the output path.
regSub $outPath $(pwd)/substituter.sh
echo $outPath > $TEST_ROOT/sub-paths
export NIX_SUBSTITUTERS=$(pwd)/substituter.sh
$nixstore -rvv "$drvPath"
text=$(cat "$outPath"/hello)
if test "$text" != "Hallo Wereld"; then exit 1; fi
if test "$text" != "Hallo Wereld"; then echo "wrong substitute output: $text"; exit 1; fi