From: <skalal@marvell.com>
To: <dts@dpdk.org>
Cc: <zzhou@marvell.com>, <pvukkisala@marvell.com>,
skalal <skalal@marvell.com>
Subject: [dts] [PATCH] tests/TestSuite_short_live.py: Corrected the expected prompt of the "pkill" command ran to terminate the l2fwd and l3fwd application.
Date: Mon, 22 Feb 2021 16:38:49 +0530 [thread overview]
Message-ID: <20210222110849.20540-1-skalal@marvell.com> (raw)
From: skalal <skalal@marvell.com>
Signed-off-by: skalal <skalal@marvell.com>
---
tests/TestSuite_short_live.py | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py
index 91deded..5ebf0b4 100644
--- a/tests/TestSuite_short_live.py
+++ b/tests/TestSuite_short_live.py
@@ -127,7 +127,7 @@ class TestShortLiveApp(TestCase):
process_file = "/var/run/dpdk/rte/config"
delay = 0
while delay < delay_max:
- process = self.dut.send_expect("lsof %s | wc -l" % process_file, "#")
+ process = self.dut.send_expect("lsof %s | wc -l" % process_file, "# ")
# as FUSE filesystem may not be accessible for root, so the output might include some warning info
res = process.splitlines()[-1].strip()
if res != '0':
@@ -162,7 +162,7 @@ class TestShortLiveApp(TestCase):
time = []
regex = re.compile(".* (\d+:\d{2}\.\d{2}).*")
eal_para = self.dut.create_eal_parameters(no_pci=True)
- out = self.dut.send_expect("echo quit | time ./%s %s -- -i" % (self.app_testpmd, eal_para), "#", 120)
+ out = self.dut.send_expect("echo quit | time ./%s %s -- -i" % (self.app_testpmd, eal_para), "# ", 120)
time = regex.findall(out)
if time != []:
@@ -189,9 +189,9 @@ class TestShortLiveApp(TestCase):
# kill with different Signal
if i%2 == 0:
- self.dut.send_expect("pkill -2 testpmd", "#", 60, True)
+ self.dut.send_expect("pkill -2 testpmd", "# ", 60, True)
else:
- self.dut.send_expect("pkill -15 testpmd", "#", 60, True)
+ self.dut.send_expect("pkill -15 testpmd", "# ", 60, True)
self.check_process()
def test_clean_up_with_signal_l2fwd(self):
@@ -205,9 +205,9 @@ class TestShortLiveApp(TestCase):
# kill with different Signal
if i%2 == 0:
- self.dut.send_expect("pkill -2 l2fwd", "#", 60, True)
+ self.dut.send_expect("pkill -2 l2fwd", "Bye...", 60)
else:
- self.dut.send_expect("pkill -15 l2fwd", "#", 60, True)
+ self.dut.send_expect("pkill -15 l2fwd", "Bye...", 60)
self.check_process()
def test_clean_up_with_signal_l3fwd(self):
@@ -221,9 +221,9 @@ class TestShortLiveApp(TestCase):
# kill with different Signal
if i%2 == 0:
- self.dut.send_expect("pkill -2 l3fwd", "#", 60, True)
+ self.dut.send_expect("pkill -2 l3fwd", "Bye...", 60)
else:
- self.dut.send_expect("pkill -15 l3fwd", "#", 60, True)
+ self.dut.send_expect("pkill -15 l3fwd", "Bye...", 60)
self.check_process()
def tear_down(self):
@@ -238,6 +238,6 @@ class TestShortLiveApp(TestCase):
Run after each test suite.
"""
self.dut.kill_all()
- self.dut.send_expect("rm -rf ./app/test-pmd/testpmd", "#")
- self.dut.send_expect("rm -rf ./app/test-pmd/*.o", "#")
- self.dut.send_expect("rm -rf ./app/test-pmd/build", "#")
+ self.dut.send_expect("rm -rf ./app/test-pmd/testpmd", "# ")
+ self.dut.send_expect("rm -rf ./app/test-pmd/*.o", "# ")
+ self.dut.send_expect("rm -rf ./app/test-pmd/build", "# ")
--
2.9.5
next reply other threads:[~2021-04-01 11:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-22 11:08 skalal [this message]
2021-04-07 6:35 ` 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=20210222110849.20540-1-skalal@marvell.com \
--to=skalal@marvell.com \
--cc=dts@dpdk.org \
--cc=pvukkisala@marvell.com \
--cc=zzhou@marvell.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).