diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-25T10·55+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-25T10·55+0000 |
commit | 80faa2f98af8616ab89ac2af63431b887a84fb32 (patch) | |
tree | eb24971c4f7dfe23b1927c055a68f7d4cec47ba2 /tests/locking.sh | |
parent | 6a0a2d559336b3a7a165fb0f87f5e70caa9d8d72 (diff) |
* In nix-store: change `--build' back to `--realise'. Also brought
back the query flag `--force-realise'. * Fixed some of the tests.
Diffstat (limited to 'tests/locking.sh')
-rw-r--r-- | tests/locking.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/locking.sh b/tests/locking.sh index f89e1240bde8..5cafa2910e6f 100644 --- a/tests/locking.sh +++ b/tests/locking.sh @@ -4,12 +4,12 @@ echo "store expr is $storeExpr" for i in 1 2 3 4 5; do echo "WORKER $i" - $TOP/src/nix-store/nix-store -rvvvvvB "$storeExpr" & + $TOP/src/nix-store/nix-store -rvv "$storeExpr" & done sleep 5 -outPath=$($TOP/src/nix-store/nix-store -qnfvvvvv "$storeExpr") +outPath=$($TOP/src/nix-store/nix-store -qvvf "$storeExpr") echo "output path is $outPath" |