blob: 1f8b5eec52b3317d5e00882a4c16918a7fd23887 (
plain) (
tree)
|
|
#!/bin/sh
# Author : Hakan Mattsson <[email protected]>
# Purpose : Simplify benchmark execution
# Created : 21 Jun 2001 by Hakan Mattsson <[email protected]>
######################################################################
args="-pa .. -boot start_sasl -sasl errlog_type error -sname bench"
set -x
if [ $# -eq 0 ] ; then
erl $args
else
while [ $# -gt 0 ]; do
erl $args -s bench run $1 -s erlang halt
shift
done
fi
|