test suite reviews and discussions
 help / color / mirror / Atom feed
* [PATCH v1] framework/project_dpdk: fix pylama errors
@ 2021-12-06 12:21 Juraj Linkeš
  2022-01-19 12:54 ` [PATCH v2] " Juraj Linkeš
  0 siblings, 1 reply; 4+ messages in thread
From: Juraj Linkeš @ 2021-12-06 12:21 UTC (permalink / raw)
  To: lijuan.tu, ohilyard; +Cc: dts, Juraj Linkeš

Pylama found the following errors:
framework/project_dpdk.py:292: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:293: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:294: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:421: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]

Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
---
Lijuan, please add additional people to review if needed.
---
 framework/project_dpdk.py | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py
index 9927bcc1..6001d8a4 100644
--- a/framework/project_dpdk.py
+++ b/framework/project_dpdk.py
@@ -286,15 +286,6 @@ class DPDKdut(Dut):
         shared_lib_path = load_global_setting(HOST_SHARED_LIB_PATH)
         if use_shared_lib == 'true' and 'Virt' not in str(self):
             self.set_build_options({'RTE_BUILD_SHARED_LIB': 'y'})
-        kernel_driver = ''
-        nic_name = ''
-        if 'Virt' in str(self):
-            if self.host_dut.nic:
-                kernel_driver = self.host_dut.nic.default_driver
-                nic_name = self.host_dut.nic.name
-        elif self.nic:
-            kernel_driver = self.nic.default_driver
-            nic_name = self.nic.name
 
         build_type = load_global_setting(HOST_BUILD_TYPE_SETTING)
         build_install_dpdk = getattr(self, 'build_install_dpdk_%s_%s' % (self.get_os_type(), build_type))
@@ -418,7 +409,7 @@ class DPDKdut(Dut):
                                     "--snapshot when run dts")
                 # if ':' in session, this is vm dut, use the dut session
                 if ':' in self.session.name:
-                    session_info = self.host_dut.alt_session
+                    session_info = self.crb.alt_session
                 else:
                      session_info = self.alt_session
                 out = session_info.send_expect('ls -F %s' % self.package, '# ')
-- 
2.20.1


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

* [PATCH v2] framework/project_dpdk: fix pylama errors
  2021-12-06 12:21 [PATCH v1] framework/project_dpdk: fix pylama errors Juraj Linkeš
@ 2022-01-19 12:54 ` Juraj Linkeš
  2022-01-25  5:32   ` Dong, JunX
  0 siblings, 1 reply; 4+ messages in thread
From: Juraj Linkeš @ 2022-01-19 12:54 UTC (permalink / raw)
  To: lijuan.tu, ohilyard, junx.dong; +Cc: dts, Juraj Linkeš

Pylama found the following errors:
framework/project_dpdk.py:292: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:293: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:294: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]
framework/project_dpdk.py:421: [E] E1101 Instance of 'DPDKdut' has no 'host_dut' member [pylint]

Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
---
Lijuan, please add additional people to review if needed.
---
 framework/project_dpdk.py | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py
index 9927bcc1..9b579b68 100644
--- a/framework/project_dpdk.py
+++ b/framework/project_dpdk.py
@@ -286,15 +286,6 @@ class DPDKdut(Dut):
         shared_lib_path = load_global_setting(HOST_SHARED_LIB_PATH)
         if use_shared_lib == 'true' and 'Virt' not in str(self):
             self.set_build_options({'RTE_BUILD_SHARED_LIB': 'y'})
-        kernel_driver = ''
-        nic_name = ''
-        if 'Virt' in str(self):
-            if self.host_dut.nic:
-                kernel_driver = self.host_dut.nic.default_driver
-                nic_name = self.host_dut.nic.name
-        elif self.nic:
-            kernel_driver = self.nic.default_driver
-            nic_name = self.nic.name
 
         build_type = load_global_setting(HOST_BUILD_TYPE_SETTING)
         build_install_dpdk = getattr(self, 'build_install_dpdk_%s_%s' % (self.get_os_type(), build_type))
@@ -418,7 +409,7 @@ class DPDKdut(Dut):
                                     "--snapshot when run dts")
                 # if ':' in session, this is vm dut, use the dut session
                 if ':' in self.session.name:
-                    session_info = self.host_dut.alt_session
+                    session_info = self.host_session
                 else:
                      session_info = self.alt_session
                 out = session_info.send_expect('ls -F %s' % self.package, '# ')
-- 
2.20.1


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

* RE: [PATCH v2] framework/project_dpdk: fix pylama errors
  2022-01-19 12:54 ` [PATCH v2] " Juraj Linkeš
@ 2022-01-25  5:32   ` Dong, JunX
  2022-01-25  5:57     ` Tu, Lijuan
  0 siblings, 1 reply; 4+ messages in thread
From: Dong, JunX @ 2022-01-25  5:32 UTC (permalink / raw)
  To: Juraj Linkeš, Tu, Lijuan, ohilyard; +Cc: dts

> -----Original Message-----
> From: Juraj Linkeš <juraj.linkes@pantheon.tech>
> Sent: Wednesday, January 19, 2022 8:55 PM
> To: Tu, Lijuan <lijuan.tu@intel.com>; ohilyard@iol.unh.edu; Dong, JunX
> <junx.dong@intel.com>
> Cc: dts@dpdk.org; Juraj Linkeš <juraj.linkes@pantheon.tech>
> Subject: [PATCH v2] framework/project_dpdk: fix pylama errors
> 
> Pylama found the following errors:
> framework/project_dpdk.py:292: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> framework/project_dpdk.py:293: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> framework/project_dpdk.py:294: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> framework/project_dpdk.py:421: [E] E1101 Instance of 'DPDKdut' has no
> 'host_dut' member [pylint]
> 
> Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>

Reviewed-by: Jun Dong <junx.dong@intel.com>

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

* RE: [PATCH v2] framework/project_dpdk: fix pylama errors
  2022-01-25  5:32   ` Dong, JunX
@ 2022-01-25  5:57     ` Tu, Lijuan
  0 siblings, 0 replies; 4+ messages in thread
From: Tu, Lijuan @ 2022-01-25  5:57 UTC (permalink / raw)
  To: Dong, JunX, Juraj Linkeš, ohilyard; +Cc: dts



> -----Original Message-----
> From: Dong, JunX <junx.dong@intel.com>
> Sent: 2022年1月25日 13:32
> To: Juraj Linkeš <juraj.linkes@pantheon.tech>; Tu, Lijuan <lijuan.tu@intel.com>;
> ohilyard@iol.unh.edu
> Cc: dts@dpdk.org
> Subject: RE: [PATCH v2] framework/project_dpdk: fix pylama errors
> 
> > -----Original Message-----
> > From: Juraj Linkeš <juraj.linkes@pantheon.tech>
> > Sent: Wednesday, January 19, 2022 8:55 PM
> > To: Tu, Lijuan <lijuan.tu@intel.com>; ohilyard@iol.unh.edu; Dong, JunX
> > <junx.dong@intel.com>
> > Cc: dts@dpdk.org; Juraj Linkeš <juraj.linkes@pantheon.tech>
> > Subject: [PATCH v2] framework/project_dpdk: fix pylama errors
> >
> > Pylama found the following errors:
> > framework/project_dpdk.py:292: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> > framework/project_dpdk.py:293: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> > framework/project_dpdk.py:294: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> > framework/project_dpdk.py:421: [E] E1101 Instance of 'DPDKdut' has no
> > 'host_dut' member [pylint]
> >
> > Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
> 
> Reviewed-by: Jun Dong <junx.dong@intel.com>

Applied, thanks


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

end of thread, other threads:[~2022-01-25  5:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-06 12:21 [PATCH v1] framework/project_dpdk: fix pylama errors Juraj Linkeš
2022-01-19 12:54 ` [PATCH v2] " Juraj Linkeš
2022-01-25  5:32   ` Dong, JunX
2022-01-25  5:57     ` Tu, Lijuan

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