2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2007-08-13 13:15:02 +00:00
|
|
|
clearStore
|
|
|
|
|
2004-06-20 19:17:54 +00:00
|
|
|
# Instantiate.
|
2007-08-13 13:15:02 +00:00
|
|
|
drvPath=$($nixinstantiate simple.nix)
|
2005-02-09 12:57:13 +00:00
|
|
|
echo "derivation is $drvPath"
|
2004-06-20 19:17:54 +00:00
|
|
|
|
|
|
|
# Find the output path.
|
2006-03-01 12:51:18 +00:00
|
|
|
outPath=$($nixstore -qvv "$drvPath")
|
2004-06-20 19:17:54 +00:00
|
|
|
echo "output path is $outPath"
|
|
|
|
|
2007-08-13 13:15:02 +00:00
|
|
|
echo $outPath > $TEST_ROOT/sub-paths
|
2004-06-20 19:17:54 +00:00
|
|
|
|
2007-08-13 13:15:02 +00:00
|
|
|
export NIX_SUBSTITUTERS=$(pwd)/substituter.sh
|
2004-06-20 19:17:54 +00:00
|
|
|
|
2006-03-01 12:51:18 +00:00
|
|
|
$nixstore -rvv "$drvPath"
|
2004-06-20 19:17:54 +00:00
|
|
|
|
|
|
|
text=$(cat "$outPath"/hello)
|
2007-08-13 13:15:02 +00:00
|
|
|
if test "$text" != "Hallo Wereld"; then echo "wrong substitute output: $text"; exit 1; fi
|