From: yufengmx <yufengx.mo@intel.com>
To: dts@dpdk.org, lei.a.yao@intel.com
Cc: yufengmx <yufengx.mo@intel.com>
Subject: [dts] [PATCH V1 1/1] power_pbf: fix power driver check condition
Date: Wed, 27 Nov 2019 17:06:13 +0800 [thread overview]
Message-ID: <20191127090613.17327-2-yufengx.mo@intel.com> (raw)
In-Reply-To: <20191127090613.17327-1-yufengx.mo@intel.com>
fix power driver check condition.
Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
tests/TestSuite_power_pbf.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/TestSuite_power_pbf.py b/tests/TestSuite_power_pbf.py
index fb4cf1a..c0422fa 100644
--- a/tests/TestSuite_power_pbf.py
+++ b/tests/TestSuite_power_pbf.py
@@ -543,9 +543,10 @@ class TestPowerPbf(TestCase):
raise Exception(msg)
def verify_power_driver(self):
+ expected_drv = 'acpi-cpufreq'
power_drv = self.get_sys_power_driver()
- msg = "power pstate should work with intel_pstate driver"
- self.verify(power_drv == 'intel_pstate', msg)
+ msg = "power pbf should work with {} driver".format(expected_drv)
+ self.verify(power_drv == expected_drv, msg)
#
# Test cases.
#
--
2.21.0
next prev parent reply other threads:[~2019-11-27 9:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-27 9:06 [dts] [PATCH V1 0/1] " yufengmx
2019-11-27 9:06 ` yufengmx [this message]
2019-11-27 9:34 ` [dts] [PATCH V1 1/1] " Tu, Lijuan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191127090613.17327-2-yufengx.mo@intel.com \
--to=yufengx.mo@intel.com \
--cc=dts@dpdk.org \
--cc=lei.a.yao@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).