forked from lix-project/lix
* Don't fork so much.
This commit is contained in:
parent
462bd50aef
commit
69d9df7fe6
|
@ -1,8 +1,5 @@
|
||||||
source common.sh
|
source common.sh
|
||||||
|
|
||||||
# This takes way to long on Cygwin (because process creation is so slow...).
|
|
||||||
if test "$system" = i686-cygwin; then exit 0; fi
|
|
||||||
|
|
||||||
clearStore
|
clearStore
|
||||||
|
|
||||||
max=2500
|
max=2500
|
||||||
|
@ -15,12 +12,12 @@ echo "making registration..."
|
||||||
|
|
||||||
for ((n = 0; n < $max; n++)); do
|
for ((n = 0; n < $max; n++)); do
|
||||||
storePath=$NIX_STORE_DIR/$n
|
storePath=$NIX_STORE_DIR/$n
|
||||||
touch $storePath
|
echo -n > $storePath
|
||||||
ref2=$NIX_STORE_DIR/$((n+1))
|
ref2=$NIX_STORE_DIR/$((n+1))
|
||||||
if test $((n+1)) = $max; then
|
if test $((n+1)) = $max; then
|
||||||
ref2=$reference
|
ref2=$reference
|
||||||
fi
|
fi
|
||||||
(echo $storePath && echo && echo 2 && echo $reference && echo $ref2)
|
echo $storePath; echo; echo 2; echo $reference; echo $ref2
|
||||||
done > $TEST_ROOT/reg_info
|
done > $TEST_ROOT/reg_info
|
||||||
|
|
||||||
echo "registering..."
|
echo "registering..."
|
||||||
|
|
Loading…
Reference in a new issue