From 550ba9ebb4b1b2415c9930879cfa6937f7fa916a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 13 Aug 2007 13:15:02 +0000 Subject: * Fix the tests. --- tests/substitutes.sh | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'tests/substitutes.sh') diff --git a/tests/substitutes.sh b/tests/substitutes.sh index c44f012f59..042827314b 100644 --- a/tests/substitutes.sh +++ b/tests/substitutes.sh @@ -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 -- cgit 1.4.1