nix-gh/tests/substitutes2.sh

22 lines
529 B
Bash
Raw Normal View History

source common.sh
2007-08-13 15:15:02 +02:00
clearStore
# Instantiate.
drvPath=$(nix-instantiate simple.nix)
echo "derivation is $drvPath"
# Find the output path.
outPath=$(nix-store -qvvvvv "$drvPath")
echo "output path is $outPath"
2007-08-13 15:15:02 +02:00
echo $outPath > $TEST_ROOT/sub-paths
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
nix-store -j0 -rvv "$drvPath"
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