[dts] [PATCH V1]virtio_pvp_regression: add retry when get dpdk promte to avoid print sequence issue

Xiao Qimai qimaix.xiao at intel.com
Tue Jul 28 05:00:43 CEST 2020


*. dpdk promte 'testpmd> ' might be misspelled when print 

Signed-off-by: Xiao Qimai <qimaix.xiao at intel.com>
---
 tests/TestSuite_virtio_pvp_regression.py | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/tests/TestSuite_virtio_pvp_regression.py b/tests/TestSuite_virtio_pvp_regression.py
index 225fc35..942c924 100644
--- a/tests/TestSuite_virtio_pvp_regression.py
+++ b/tests/TestSuite_virtio_pvp_regression.py
@@ -257,7 +257,14 @@ class TestVirtioPVPRegression(TestCase):
         command_line_client = testcmd + eal_params + para
         self.vhost.send_expect(command_line_client, "testpmd> ", 30)
         self.vhost.send_expect("set fwd mac", "testpmd> ", 30)
-        self.vhost.send_expect("start", "testpmd> ", 30)
+        try:
+            self.vhost.send_expect("start", "testpmd> ", 30)
+        except Exception as e:
+            self.logger.warning(e)
+            self.logger.info('dpdk prompt testpmd> may not be printed correctly, add retry')
+            time.sleep(2)
+            self.vhost.send_expect('', 'testpmd> ', timeout=1)
+
 
     def start_testpmd_in_vm(self, virtio_path):
         """
-- 
2.25.1



More information about the dts mailing list