From: lingwei <weix.ling@intel.com>
To: dts@dpdk.org
Cc: lingwei <weix.ling@intel.com>
Subject: [dts] [PATCH V1] tests/TestSuite_performance_thread:support dpdk meson build
Date: Fri, 14 Aug 2020 10:16:53 +0000 [thread overview]
Message-ID: <20200814101653.80320-1-weix.ling@intel.com> (raw)
support dpdk meson build
Signed-off-by: lingwei <weix.ling@intel.com>
---
tests/TestSuite_performance_thread.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/TestSuite_performance_thread.py b/tests/TestSuite_performance_thread.py
index 2ede5b5..3ff2015 100644
--- a/tests/TestSuite_performance_thread.py
+++ b/tests/TestSuite_performance_thread.py
@@ -61,7 +61,6 @@ class TestPerformanceThread(TestCase):
self.frame_sizes = self.get_suite_cfg()["frame_size"]
self.nb_cores = self.get_suite_cfg()["cores"]
self.headers_size = HEADER_SIZE['eth'] + HEADER_SIZE['ip'] + HEADER_SIZE['tcp']
- self.path = "examples/performance-thread/l3fwd-thread/build/l3fwd-thread"
# compile performance_thread app
out = self.dut.build_dpdk_apps("./examples/performance-thread/l3fwd-thread")
@@ -196,10 +195,11 @@ class TestPerformanceThread(TestCase):
for cores in self.nb_cores:
core_list, core_mask = self.create_cores(cores)
lcore_config, rx, tx = self.config_rx_tx(cores, core_list)
+ app_name = self.dut.apps_name['l3fwd-thread']
if self.running_case is "test_perf_n_lcore_per_pcore":
- cmdline = "{} -n 4 {} --lcores='{}' {} --rx='{}' --tx='{}'".format(self.path, eal_param, lcore_config, params, rx, tx)
+ cmdline = "{} -n 4 {} --lcores='{}' {} --rx='{}' --tx='{}'".format(app_name, eal_param, lcore_config, params, rx, tx)
else:
- cmdline = "{} -c {} {} {} --rx='{}' --tx='{}'".format(self.path, core_mask, eal_param, params, rx, tx)
+ cmdline = "{} -c {} {} {} --rx='{}' --tx='{}'".format(app_name, core_mask, eal_param, params, rx, tx)
self.dut.send_expect(cmdline, "L3FWD:", 120)
for frame_size in self.frame_sizes:
--
2.17.1
next reply other threads:[~2020-08-14 2:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-14 10:16 lingwei [this message]
2020-08-21 3:09 ` 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=20200814101653.80320-1-weix.ling@intel.com \
--to=weix.ling@intel.com \
--cc=dts@dpdk.org \
/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).