#!/bin/sh
#
# Run the "disktest" script a bunch of times, with various parameters.
# We do 1024K, 16K and 1K blocks, and 1, 2, 8 and 64 readers/writers.
#
# Placed into the public domain in 2002
# by the author, Curt Sampson <cjs@cynic.net>.
#

disktest="${0}1"

$disktest 1 1024 4096
$disktest 1 16 4096
$disktest 1 1 4096

$disktest 2 1024 2048
$disktest 2 16 2048
$disktest 2 1 2048

$disktest 8 1024 1024
$disktest 8 16 1024
$disktest 8 1 1024

$disktest 64 16 512
