guix/tests/locking.sh

20 lines
320 B
Bash
Raw Normal View History

source common.sh
2006-03-01 12:51:18 +00:00
drvPath=$($nixinstantiate locking.nix)
echo "derivation is $drvPath"
for i in 1 2 3 4 5; do
echo "WORKER $i"
2006-03-01 12:51:18 +00:00
$nixstore -rvv "$drvPath" &
done
sleep 5
2006-03-01 12:51:18 +00:00
outPath=$($nixstore -qvvf "$drvPath")
echo "output path is $outPath"
text=$(cat "$outPath")
if test "$text" != "aabcade"; then exit 1; fi