Merge "Add support for restarting a service"
[yardstick.git] / yardstick / benchmark / scenarios / compute / cache_stat.bash
1 #!/bin/bash
2
3 ##############################################################################
4 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 # Run a cachestat cache benchmark in a host
13
14 set -e
15
16 INTERVAL=$1
17
18 run_cachestat()
19 {
20         cd /opt/tempT/Cachestat
21         bash cachestat $INTERVAL
22 }
23
24 main()
25 {
26     # run the test
27     run_cachestat
28 }
29
30 main