-## $Id: Makefile.am,v 1.14 2006-12-09 08:03:57 adam Exp $
+## $Id: Makefile.am,v 1.15 2006-12-10 11:54:29 adam Exp $
noinst_LTLIBRARIES = libidzebra-isamb.la
noinst_PROGRAMS = benchisamb
check_PROGRAMS = tstisamb
-EXTRA_DIST = bench1.sh bench1.plt
+EXTRA_DIST = bench1.sh bench1.plt bench2.sh bench2.plt
TESTS = $(check_PROGRAMS)
--- /dev/null
+set terminal postscript eps
+set output "bench2.eps"
+set xlabel "R"
+set ylabel "time"
+plot "bench2.0.dat" title "0" with linespoints, \
+ "bench2.4.dat" title "4" with linespoints, \
+ "bench2.8.dat" title "8" with linespoints, \
+ "bench2.12.dat" title "12" with linespoints
--- /dev/null
+#!/bin/sh
+# $Id: bench2.sh,v 1.1 2006-12-10 11:54:29 adam Exp $
+# Test for variations in size of ISAM entry
+CMD="./benchisamb -r 50 -n 1000000 -i 1"
+
+for sz in 0 4 8 12; do
+ $CMD -z $sz >bench2.$sz.dat
+ ls -l *.mf
+ sleep 2
+done
+