about summary refs log blame commit diff
path: root/tests/locking.sh
blob: 4b41de3916a92ffb9dd5dd399d05e0ff404d2c36 (plain) (tree)
1
2
3
4
5
6
7
8
9

                
                                      
 
                             
 
                      
                    
                               



       
                                     




                                             
source common.sh

drvPath=$($nixinstantiate locking.nix)

echo "derivation is $drvPath"

for i in 1 2 3 4 5; do
    echo "WORKER $i"
    $nixstore -rvv "$drvPath" &
done

sleep 5

outPath=$($nixstore -qvvf "$drvPath")

echo "output path is $outPath"

text=$(cat "$outPath")
if test "$text" != "aabcade"; then exit 1; fi