From: "Jiang, YuX" <yux.jiang@intel.com>
To: dts@dpdk.org
Cc: "Jiang,yu" <yux.jiang@intel.com>, Jiang@dpdk.org
Subject: [dts] [PATCH V1] tests/crypto_perf_cryptodev_perf: optimize parse output
Date: Wed, 29 Jul 2020 15:54:36 +0800 [thread overview]
Message-ID: <20200729075436.21401-1-yux.jiang@intel.com> (raw)
From: "Jiang,yu" <yux.jiang@intel.com>
Optimize the output of perf test results log
Signed-off-by: Jiang,yu <yux.jiang@intel.com>
---
tests/TestSuite_crypto_perf_cryptodev_perf.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/TestSuite_crypto_perf_cryptodev_perf.py b/tests/TestSuite_crypto_perf_cryptodev_perf.py
index e1780f5..fb9f2e0 100644
--- a/tests/TestSuite_crypto_perf_cryptodev_perf.py
+++ b/tests/TestSuite_crypto_perf_cryptodev_perf.py
@@ -268,14 +268,15 @@ class PerfTestsCryptodev(TestCase):
if lines[line_index].startswith(" lcore id"):
self.logger.debug("data output line from: " + str(line_index))
break
+ data_line = line_index - 2
results = []
pattern = re.compile(r'\s+')
- for line in lines[line_index:]:
+ for line in lines[data_line:-1]:
print(line)
result = {}
result_list = pattern.split(line.strip(" "))
- if result_list[0] == "lcore id" or result_list[0] == "lcore" or not result_list[0]:
+ if len(result_list) != 10 or result_list[0] == "lcore" or not result_list[0]:
continue
result["lcore_id"] = int(result_list[0])
result["buf_size"] = int(result_list[1])
--
2.7.4
next reply other threads:[~2020-07-29 7:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-29 7:54 Jiang, YuX [this message]
2020-07-31 5:15 ` Jiang, YuX
2020-08-12 6:59 ` 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=20200729075436.21401-1-yux.jiang@intel.com \
--to=yux.jiang@intel.com \
--cc=Jiang@dpdk.org \
--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).