-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstep3.sh
executable file
·59 lines (56 loc) · 1.13 KB
/
step3.sh
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/sh
. ./step2.sh > /dev/null
pushd ${HANDLER_DIR}
for testsuite in `cat ${HANDLER_DIR}/.list`
do
pushd ${testsuite}
if [ -d new ]; then
pushd new
case $testsuite in
iozone_bigmem_basic_ext3)
${ROOT_DIR}/iozone_disp.sh iozone_bigmem_basic_ext3
;;
iozone_bigmem_basic_xfs)
${ROOT_DIR}/iozone_disp.sh iozone_bigmem_basic_xfs
;;
kernbench)
${ROOT_DIR}/kernbench_disp.sh kernbench
;;
libmicro_bench)
${ROOT_DIR}/libmicro_bench.sh libmicro_bench
;;
lmbench_bench)
${ROOT_DIR}/lmbench_bench.sh lmbench_bench
;;
netperf_loop4)
${ROOT_DIR}/netperf.sh netperf_loop4
;;
netperf_loop6)
${ROOT_DIR}/netperf.sh netperf_loop6
;;
reaim_ioperf_ext3)
${ROOT_DIR}/reaim_ioperf.sh reaim_ioperf_ext3
;;
reaim_ioperf_xfs)
${ROOT_DIR}/reaim_ioperf.sh reaim_ioperf_xfs
;;
siege)
${ROOT_DIR}/siege.sh siege
;;
sysbench_oltp_ext3)
${ROOT_DIR}/sysbench.sh sysbench_oltp_ext3
;;
sysbench_oltp_xfs)
${ROOT_DIR}/sysbench.sh sysbench_oltp_xfs
;;
*)
echo 'Please review code.'
echo ${testsuite}
exit 1
;;
esac
popd
fi
popd
done
popd