projects
/
idzebra-moved-to-github.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added new test which makes variations to ISAM entry size.
[idzebra-moved-to-github.git]
/
isamb
/
bench2.sh
1
#!/bin/sh
2
# $Id: bench2.sh,v 1.1 2006-12-10 11:54:29 adam Exp $
3
# Test for variations in size of ISAM entry
4
CMD="./benchisamb -r 50 -n 1000000 -i 1"
5
6
for sz in 0 4 8 12; do
7
$CMD -z $sz >bench2.$sz.dat
8
ls -l *.mf
9
sleep 2
10
done
11