3
# PM-QA validation test suite for the power management on Linux
5
# Copyright (C) 2011, Linaro Limited.
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.
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.
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.
22
# Rajagopal Venkat <rajagopal.venkat@linaro.org>
23
# - initial API and implementation
26
# URL : https://wiki.linaro.org/WorkingGroups/PowerManagement/Doc/QA/Scripts#powertop_01
28
source ../include/functions.sh
32
local bin_path=`command -v powertop`
36
local report_name=PowerTOP*.csv
38
# remove old reports if exists
41
# run powertop for $(iterations) in report generation mode
43
sudo $bin_path --$report --time=$seconds --iteration=$iterations
46
# check if powertop run for desired time
47
let expected_time="$iterations * $seconds"
48
let actual_time="$end_time - $start_time"
50
check "if powertop run for $expected_time sec" "test $actual_time -ge $expected_time"
52
# check if $(iterations) number of reports are generated
53
check "if reports are generated" "test $(ls -1 $report_name | wc -l) -eq $iterations"