aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mnesia/examples/bench/bench.sh
blob: 1f8b5eec52b3317d5e00882a4c16918a7fd23887 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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