diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-08-19T09·09+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-08-19T09·09+0000 |
commit | 8f1dcdfc0ae05c403fe59b592093d3e61e87f1b0 (patch) | |
tree | b55b1ab81dd16920b5e9b3832d69707d9b31b60b /tests/locking.sh | |
parent | 1eddee59f22b56a4b098921083780990dc1f0468 (diff) |
* Make sure that no build hook is set by default in the tests.
* Don't use `seq' - some primitive, obsolete operating systems (Darwin) don't have it.
Diffstat (limited to 'tests/locking.sh')
-rw-r--r-- | tests/locking.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/locking.sh b/tests/locking.sh index ac515fcea480..f89e1240bde8 100644 --- a/tests/locking.sh +++ b/tests/locking.sh @@ -2,7 +2,7 @@ storeExpr=$($TOP/src/nix-instantiate/nix-instantiate locking.nix) echo "store expr is $storeExpr" -for i in $(seq 1 5); do +for i in 1 2 3 4 5; do echo "WORKER $i" $TOP/src/nix-store/nix-store -rvvvvvB "$storeExpr" & done |