test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] framework/pmd_output: add timeout parameter for start_pmd method
@ 2021-04-09 12:25 sunqin
  2021-04-12  2:19 ` Sun, QinX
  0 siblings, 1 reply; 5+ messages in thread
From: sunqin @ 2021-04-09 12:25 UTC (permalink / raw)
  To: dts; +Cc: sunqin

some cases start testpmd with 'cmdline-file' may need more than 120 seconds,

so add 'timeout' parameter to support customization and default value still set as 120

Signed-off-by: sunqin <qinx.sun@intel.com>
---
 framework/pmd_output.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/framework/pmd_output.py b/framework/pmd_output.py
index 1ad4ce79..838fa0bd 100644
--- a/framework/pmd_output.py
+++ b/framework/pmd_output.py
@@ -148,7 +148,8 @@ class PmdOutput():
         command = command.replace('  ', ' ')
         if self.session != self.dut:
             self.session.send_expect("cd %s" % self.dut.base_dir, "# ")
-        out = self.session.send_expect(command, expected, 120)
+        timeout = config.get('timeout',120)
+        out = self.session.send_expect(command, expected, timeout)
         self.command = command
         # wait 10s to ensure links getting up before test start.
         sleep(10)
-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread
* [dts] [PATCH V1] framework/pmd_output: add timeout parameter for start_pmd method
@ 2021-04-09 11:48 sunqin
  0 siblings, 0 replies; 5+ messages in thread
From: sunqin @ 2021-04-09 11:48 UTC (permalink / raw)
  To: dts; +Cc: sunqin

some cases start testpmd with 'cmdline-file' may need more than 120 seconds,

so add 'timeout' parameter to support customization and default value still set as 120

Signed-off-by: sunqin <qinx.sun@intel.com>
---
 framework/pmd_output.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/framework/pmd_output.py b/framework/pmd_output.py
index 1ad4ce79..838fa0bd 100644
--- a/framework/pmd_output.py
+++ b/framework/pmd_output.py
@@ -148,7 +148,8 @@ class PmdOutput():
         command = command.replace('  ', ' ')
         if self.session != self.dut:
             self.session.send_expect("cd %s" % self.dut.base_dir, "# ")
-        out = self.session.send_expect(command, expected, 120)
+        timeout = config.get('timeout',120)
+        out = self.session.send_expect(command, expected, timeout)
         self.command = command
         # wait 10s to ensure links getting up before test start.
         sleep(10)
-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-04-12  5:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-09 12:25 [dts] [PATCH V1] framework/pmd_output: add timeout parameter for start_pmd method sunqin
2021-04-12  2:19 ` Sun, QinX
2021-04-12  2:22   ` Zhao, HaiyangX
2021-04-12  5:48     ` Tu, Lijuan
  -- strict thread matches above, loose matches on Subject: below --
2021-04-09 11:48 sunqin

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).