about summary refs log tree commit diff
path: root/tests/locking.sh
blob: 3e1788660602d718731b0dfe08b07f9dc372db33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
source common.sh

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