File: run-bench

package info (click to toggle)
gatling 0.13-6.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 1,260 kB
  • sloc: ansic: 25,952; makefile: 143; sh: 71; perl: 30
file content (33 lines) | stat: -rw-r--r-- 983 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
OS=`uname -s | tr A-Z a-z`
VERSION=`uname -r | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
TAG=$OS$VERSION
ulimit -Hn 11000
ulimit -n 11000
if ! test -f ${1:-fnord};
  then
  echo "give a file name for mmapbench as argument!"
  exit 0
fi
for i in 1 2 3 4 5; do
  echo pass $i: running mmapbench
  ./mmapbench -c 10000 $1 > mmap-$TAG-$i.log
  sleep 1
  echo pass $i: running IPv6 bindbench
  ./bindbench -6 -c 10000 > bind6-$TAG-$i.log
  sleep 1
  echo pass $i: running IPv4 bindbench
  ./bindbench -c 10000 > bind4-$TAG-$i.log
  sleep 1
  echo pass $i: running forkbench
  ./forkbench -c 3000 > fork-$TAG-$i.log
  sleep 1
  echo pass $i: running forksbench
  ./forksbench -c 3000 > forks-$TAG-$i.log
  sleep 1
  echo pass $i: running httpbench
  ./httpbench -k -c 5000 -i 10 -s 5 http://127.0.0.1/README.httpbench > httpa-$TAG-$i.log
  sleep 1
  echo pass $i: running httpbench -b
  ./httpbench -b -k -c 5000 -i 10 -s 5 http://127.0.0.1/README.httpbench > httpb-$TAG-$i.log
  sleep 1
done