1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/tests/locking.sh

20 lines
320 B
Bash
Raw Normal View History

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