2006-03-01 13:15:33 +01:00
|
|
|
source common.sh
|
|
|
|
|
2007-08-13 15:15:02 +02:00
|
|
|
clearStore
|
|
|
|
|
2004-06-24 14:56:24 +02:00
|
|
|
# Instantiate.
|
2011-10-10 23:32:34 +02:00
|
|
|
drvPath=$(nix-instantiate simple.nix)
|
2005-02-09 13:57:13 +01:00
|
|
|
echo "derivation is $drvPath"
|
2004-06-24 14:56:24 +02:00
|
|
|
|
|
|
|
# Find the output path.
|
2011-10-10 23:32:34 +02:00
|
|
|
outPath=$(nix-store -qvvvvv "$drvPath")
|
2004-06-24 14:56:24 +02:00
|
|
|
echo "output path is $outPath"
|
|
|
|
|
2007-08-13 15:15:02 +02:00
|
|
|
echo $outPath > $TEST_ROOT/sub-paths
|
2004-06-24 14:56:24 +02:00
|
|
|
|
2007-08-13 15:15:02 +02:00
|
|
|
# First try a substituter that fails, then one that succeeds
|
|
|
|
export NIX_SUBSTITUTERS=$(pwd)/substituter2.sh:$(pwd)/substituter.sh
|
2004-06-24 14:56:24 +02:00
|
|
|
|
2011-10-10 23:32:34 +02:00
|
|
|
nix-store -j0 -rvv "$drvPath"
|
2004-06-24 14:56:24 +02:00
|
|
|
|
|
|
|
text=$(cat "$outPath"/hello)
|
2007-08-13 15:15:02 +02:00
|
|
|
if test "$text" != "Hallo Wereld"; then echo "wrong substitute output: $text"; exit 1; fi
|