2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
drvPath=$($TOP/src/nix-instantiate/nix-instantiate locking.nix)
|
2004-05-04 13:56:30 +00:00
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
echo "derivation is $drvPath"
|
2004-05-04 13:56:30 +00:00
|
|
|
|
2004-08-19 09:09:09 +00:00
|
|
|
for i in 1 2 3 4 5; do
|
2004-05-04 13:56:30 +00:00
|
|
|
echo "WORKER $i"
|
2005-02-09 12:57:13 +00:00
|
|
|
$TOP/src/nix-store/nix-store -rvv "$drvPath" &
|
2004-05-04 13:56:30 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
sleep 5
|
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
outPath=$($TOP/src/nix-store/nix-store -qvvf "$drvPath")
|
2004-05-04 13:56:30 +00:00
|
|
|
|
|
|
|
echo "output path is $outPath"
|
|
|
|
|
|
|
|
text=$(cat "$outPath")
|
|
|
|
if test "$text" != "aabcade"; then exit 1; fi
|