~linaro-pm-wg/linaro-power-qa/master

« back to all changes in this revision

Viewing changes to powertop/powertop_01.sh

  • Committer: hongbo.zhang
  • Author(s): Rajagopal Venkat
  • Date: 2012-11-28 09:11:08 UTC
  • Revision ID: git-v1:cff223c599984ab584dce9e09e259be0e5462ab6
pm-qa: add powertop test cases

add powertop test cases into pm-qa. Run
the powertop sanity test to check if tool
is available. If yes, then run powertop in
report generation mode and validate the output.

Signed-off-by: Rajagopal Venkat <rajagopal.venkat@linaro.org>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
#
 
3
# PM-QA validation test suite for the power management on Linux
 
4
#
 
5
# Copyright (C) 2011, Linaro Limited.
 
6
#
 
7
# This program is free software; you can redistribute it and/or
 
8
# modify it under the terms of the GNU General Public License
 
9
# as published by the Free Software Foundation; either version 2
 
10
# of the License, or (at your option) any later version.
 
11
#
 
12
# This program is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with this program; if not, write to the Free Software
 
19
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
20
#
 
21
# Contributors:
 
22
#     Rajagopal Venkat <rajagopal.venkat@linaro.org>
 
23
#       - initial API and implementation
 
24
#
 
25
 
 
26
# URL : https://wiki.linaro.org/WorkingGroups/PowerManagement/Doc/QA/Scripts#powertop_01
 
27
 
 
28
source ../include/functions.sh
 
29
 
 
30
run_powertop() {
 
31
 
 
32
    local bin_path=`command -v powertop`
 
33
    local report=csv
 
34
    local seconds=10
 
35
    local iterations=2
 
36
    local report_name=PowerTOP*.csv
 
37
 
 
38
    # remove old reports if exists
 
39
    rm -f $report_name
 
40
 
 
41
    # run powertop for $(iterations) in report generation mode
 
42
    start_time=`date +%s`
 
43
    sudo $bin_path --$report --time=$seconds --iteration=$iterations
 
44
    end_time=`date +%s`
 
45
 
 
46
    # check if powertop run for desired time
 
47
    let expected_time="$iterations * $seconds"
 
48
    let actual_time="$end_time - $start_time"
 
49
 
 
50
    check "if powertop run for $expected_time sec" "test $actual_time -ge $expected_time"
 
51
 
 
52
    # check if $(iterations) number of reports are generated
 
53
    check "if reports are generated" "test $(ls -1 $report_name | wc -l) -eq $iterations"
 
54
 
 
55
    return 0
 
56
}
 
57
 
 
58
run_powertop