nix-gh/tests/parallel.sh
2006-03-01 12:51:18 +00:00

16 lines
341 B
Bash

source common.sh
drvPath=$($nixinstantiate parallel.nix)
echo "derivation is $drvPath"
outPath=$($nixstore -qfvv -j10000 "$drvPath")
echo "output path is $outPath"
text=$(cat "$outPath")
if test "$text" != "abacade"; then exit 1; fi
if test "$(cat $SHARED.cur)" != 0; then exit 1; fi
if test "$(cat $SHARED.max)" != 3; then exit 1; fi