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



       
                                                        




                                             
drvPath=$($TOP/src/nix-instantiate/nix-instantiate locking.nix)

echo "derivation is $drvPath"

for i in 1 2 3 4 5; do
    echo "WORKER $i"
    $TOP/src/nix-store/nix-store -rvv "$drvPath" &
done

sleep 5

outPath=$($TOP/src/nix-store/nix-store -qvvf "$drvPath")

echo "output path is $outPath"

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