mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 14:06:16 +02:00
80faa2f98a
back the query flag `--force-realise'. * Fixed some of the tests.
13 lines
373 B
Bash
13 lines
373 B
Bash
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate parallel.nix)
|
|
|
|
echo "store expr is $storeExpr"
|
|
|
|
outPath=$($TOP/src/nix-store/nix-store -qfvv -j10000 "$storeExpr")
|
|
|
|
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
|