From patchwork Fri Aug 5 13:03:02 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Lezcano X-Patchwork-Id: 3283 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 9554C24073 for ; Fri, 5 Aug 2011 13:03:24 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id 5EF05A18261 for ; Fri, 5 Aug 2011 13:03:24 +0000 (UTC) Received: by mail-qw0-f52.google.com with SMTP id 8so1768594qwb.11 for ; Fri, 05 Aug 2011 06:03:24 -0700 (PDT) Received: by 10.229.183.84 with SMTP id cf20mr1685610qcb.121.1312549402810; Fri, 05 Aug 2011 06:03:22 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.6.73 with SMTP id 9cs47893qcy; Fri, 5 Aug 2011 06:03:22 -0700 (PDT) Received: by 10.227.9.95 with SMTP id k31mr1869186wbk.71.1312549401564; Fri, 05 Aug 2011 06:03:21 -0700 (PDT) Received: from mtagate3.uk.ibm.com (mtagate3.uk.ibm.com [194.196.100.163]) by mx.google.com with ESMTPS id 13si3329043wbw.94.2011.08.05.06.03.21 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Aug 2011 06:03:21 -0700 (PDT) Received-SPF: neutral (google.com: 194.196.100.163 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) client-ip=194.196.100.163; Authentication-Results: mx.google.com; spf=neutral (google.com: 194.196.100.163 is neither permitted nor denied by best guess record for domain of daniel.lezcano@linaro.org) smtp.mail=daniel.lezcano@linaro.org Received: from d06nrmr1707.portsmouth.uk.ibm.com (d06nrmr1707.portsmouth.uk.ibm.com [9.149.39.225]) by mtagate3.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p75D3KtN028497; Fri, 5 Aug 2011 13:03:20 GMT Received: from d06av04.portsmouth.uk.ibm.com (d06av04.portsmouth.uk.ibm.com [9.149.37.216]) by d06nrmr1707.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p75D3KKX2199748; Fri, 5 Aug 2011 14:03:20 +0100 Received: from d06av04.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p75D3KL5025648; Fri, 5 Aug 2011 07:03:20 -0600 Received: from smtp.lab.toulouse-stg.fr.ibm.com (srv01.lab.toulouse-stg.fr.ibm.com [9.101.4.1]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p75D3KbR025643; Fri, 5 Aug 2011 07:03:20 -0600 Received: from localhost.localdomain (sig-9-146-235-102.de.ibm.com [9.146.235.102]) by smtp.lab.toulouse-stg.fr.ibm.com (Postfix) with ESMTP id EDB5F210FB9; Fri, 5 Aug 2011 15:03:18 +0200 (CEST) From: Daniel Lezcano To: linaro-dev@lists.linaro.org Cc: vincent.guittot@linaro.org, amit.kucheria@linaro.org Subject: [pm-qa 3/5] test_02 : check topology is enabled Date: Fri, 5 Aug 2011 15:03:02 +0200 Message-Id: <1312549384-26580-3-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1312549384-26580-1-git-send-email-daniel.lezcano@linaro.org> References: <1312549384-26580-1-git-send-email-daniel.lezcano@linaro.org> Signed-off-by: Daniel Lezcano --- include/functions.sh | 12 ++++++++++++ sched_mc/test_02.sh | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 0 deletions(-) create mode 100644 sched_mc/test_02.sh diff --git a/include/functions.sh b/include/functions.sh index e01d0dc..094d877 100644 --- a/include/functions.sh +++ b/include/functions.sh @@ -208,6 +208,18 @@ check_sched_mc_files() { return 0 } +check_topology_files() { + + local dirpath=$CPU_PATH/$1/topology + shift 1 + + for i in $@; do + check "$i exists" "test -f" $dirpath/$i || return 1 + done + + return 0 +} + save_governors() { governors_backup= diff --git a/sched_mc/test_02.sh b/sched_mc/test_02.sh new file mode 100644 index 0000000..36730a4 --- /dev/null +++ b/sched_mc/test_02.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# +# PM-QA validation test suite for the power management on ARM +# +# Copyright (C) 2011, Linaro Limited. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +# Contributors: +# Daniel Lezcano (IBM Corporation) +# - initial API and implementation +# + +# URL : https://wiki.linaro.org/WorkingGroups/PowerManagement/Doc/QA/Scripts#sched_mc_02 + +source ../include/functions.sh + +check_physical_package_id() { + + local package_id=$CPU_PATH/$1/topology/physical_package_id + local val=$(cat $package_id) + + check "topology is enabled" "test \"$val\" != \"-1\"" +} + +for_each_cpu check_physical_package_id || exit 1