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 5/7] power_telemetry: support meson
Date: Tue, 15 Sep 2020 16:33:49 +0800 [thread overview]
Message-ID: <20200915083351.12506-6-yufengx.mo@intel.com> (raw)
In-Reply-To: <20200915083351.12506-1-yufengx.mo@intel.com>
support meson build.
Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
tests/TestSuite_power_telemetry.py | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/tests/TestSuite_power_telemetry.py b/tests/TestSuite_power_telemetry.py
index 90404e3..8299d3b 100644
--- a/tests/TestSuite_power_telemetry.py
+++ b/tests/TestSuite_power_telemetry.py
@@ -42,6 +42,8 @@ import json
from copy import deepcopy
from pprint import pformat
+from settings import load_global_setting
+from settings import HOST_BUILD_TYPE_SETTING
from utils import create_mask as dts_create_mask
from settings import HEADER_SIZE
from test_case import TestCase
@@ -126,15 +128,24 @@ class TestPowerTelemetry(TestCase):
if self.dut.skip_setup:
return
SW = "CONFIG_RTE_LIBRTE_TELEMETRY"
- cmd = "sed -i -e 's/{0}=n$/{0}=y/' {1}/config/common_base".format(
- SW, self.target_dir)
- self.d_a_con(cmd)
+ if 'meson' == load_global_setting(HOST_BUILD_TYPE_SETTING):
+ self.dut.set_build_options({SW[7:]: 'y'})
+ else:
+ cmd = "sed -i -e 's/{0}=n$/{0}=y/' {1}/config/common_base".format(
+ SW, self.target_dir)
+ self.d_a_con(cmd)
# re-compile dpdk source code
+ back = self.dut.skip_setup
+ self.dut.skip_setup = False
self.dut.build_install_dpdk(self.target)
+ self.dut.skip_setup = back
def prepare_binary(self, name):
example_dir = "examples/" + name
out = self.dut.build_dpdk_apps('./' + example_dir)
+ if 'meson' == load_global_setting(HOST_BUILD_TYPE_SETTING):
+ return os.path.join(self.target_dir,
+ self.dut.apps_name[os.path.basename(name)])
self.verify("Error" not in out, "Compilation error")
self.verify("No such" not in out, "Compilation error")
binary_dir = os.path.join(self.target_dir, example_dir, 'build')
--
2.21.0
next prev parent reply other threads:[~2020-09-15 8:36 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-15 8:33 [dts] [PATCH V1 0/7] power: power suite series " yufengmx
2020-09-15 8:33 ` [dts] [PATCH V1 1/7] power_bidirection_channel: " yufengmx
2020-09-15 9:14 ` Ma, LihongX
2020-09-15 8:33 ` [dts] [PATCH V1 2/7] power_empty_poll: " yufengmx
2020-09-15 8:33 ` [dts] [PATCH V1 3/7] power_pbf: " yufengmx
2020-09-15 8:33 ` [dts] [PATCH V1 4/7] power_pstate: " yufengmx
2020-09-15 8:33 ` yufengmx [this message]
2020-09-15 8:33 ` [dts] [PATCH V1 6/7] vm_pw_mgmt_policy: " yufengmx
2020-09-15 8:33 ` [dts] [PATCH V1 7/7] conf: power suite series " yufengmx
2020-09-15 8:38 ` [dts] [PATCH V1 0/7] power: " Mo, YufengX
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=20200915083351.12506-6-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).