Fossil SCM
|
1
|
sudo -v |
|
2
|
for n in 500 2000 5000; do |
|
3
|
echo "cache_n=$n" ; export FOSSIL_CACHE_N=$n |
|
4
|
export FOSSIL_CACHE_SZ=250000000 # This needs to be high but otherwise doesnt matter |
|
5
|
cp sqlite.fossil /tmp/sqlite.fossil |
|
6
|
sync; echo 3 | sudo tee /proc/sys/vm/drop_caches > /dev/null # Linux only |
|
7
|
time ../fossil test-integrity -R /tmp/sqlite.fossil > /dev/null |
|
8
|
done |
|
9
|
|