forked from lix-project/lix
14 lines
281 B
Bash
14 lines
281 B
Bash
source common.sh
|
|
|
|
clearStore
|
|
|
|
outPath=$($nixbuild -vv -j10000 parallel.nix)
|
|
|
|
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
|