test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH] framework/dut: fix a typo
@ 2019-01-05 18:22 Rami Rosen
  2019-01-07  5:07 ` Tu, Lijuan
  0 siblings, 1 reply; 6+ messages in thread
From: Rami Rosen @ 2019-01-05 18:22 UTC (permalink / raw)
  To: dts; +Cc: Rami Rosen

This patch fixes a typo in framework/dut.py; it is better to use 
"PORT CANNOT BE FOUND" than "PORT CANNOT FOUND".

Signed-off-by: Rami Rosen <ramirose@gmail.com>
---
 framework/dut.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/dut.py b/framework/dut.py
index a8116ff..c425d45 100644
--- a/framework/dut.py
+++ b/framework/dut.py
@@ -936,7 +936,7 @@ class Dut(Crb):
                         self.ports_map[dutPort] = remotePort
                         break
                 if self.ports_map[dutPort] == -1:
-                    self.logger.error("CONFIGURED TESTER PORT CANNOT FOUND!!!")
+                    self.logger.error("CONFIGURED TESTER PORT CANNOT BE FOUND!!!")
                 else:
                     continue  # skip ping6 map
 
-- 
2.19.2

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

* Re: [dts] [PATCH] framework/dut: fix a typo
  2019-01-05 18:22 [dts] [PATCH] framework/dut: fix a typo Rami Rosen
@ 2019-01-07  5:07 ` Tu, Lijuan
  0 siblings, 0 replies; 6+ messages in thread
From: Tu, Lijuan @ 2019-01-07  5:07 UTC (permalink / raw)
  To: Rami Rosen, dts

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Rami Rosen
> Sent: Sunday, January 6, 2019 2:22 AM
> To: dts@dpdk.org
> Cc: Rami Rosen <ramirose@gmail.com>
> Subject: [dts] [PATCH] framework/dut: fix a typo
> 
> This patch fixes a typo in framework/dut.py; it is better to use "PORT
> CANNOT BE FOUND" than "PORT CANNOT FOUND".
> 
> Signed-off-by: Rami Rosen <ramirose@gmail.com>
> ---
>  framework/dut.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/framework/dut.py b/framework/dut.py index a8116ff..c425d45
> 100644
> --- a/framework/dut.py
> +++ b/framework/dut.py
> @@ -936,7 +936,7 @@ class Dut(Crb):
>                          self.ports_map[dutPort] = remotePort
>                          break
>                  if self.ports_map[dutPort] == -1:
> -                    self.logger.error("CONFIGURED TESTER PORT
> CANNOT FOUND!!!")
> +                    self.logger.error("CONFIGURED TESTER PORT
> CANNOT BE
> + FOUND!!!")
>                  else:
>                      continue  # skip ping6 map
> 
> --
> 2.19.2

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

* Re: [dts] [PATCH] framework/dut: fix a typo
  2019-01-01  6:12 Rami Rosen
@ 2019-01-07  5:17 ` Tu, Lijuan
  0 siblings, 0 replies; 6+ messages in thread
From: Tu, Lijuan @ 2019-01-07  5:17 UTC (permalink / raw)
  To: Rami Rosen, dts

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Rami Rosen
> Sent: Tuesday, January 1, 2019 2:13 PM
> To: dts@dpdk.org
> Cc: Rami Rosen <ramirose@gmail.com>
> Subject: [dts] [PATCH] framework/dut: fix a typo
> 
> This patch fixes a typo in framework/dut.py
> 
> Signed-off-by: Rami Rosen <ramirose@gmail.com>
> ---
>  framework/dut.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/framework/dut.py b/framework/dut.py
> index a8116ff..41a7516 100644
> --- a/framework/dut.py
> +++ b/framework/dut.py
> @@ -806,7 +806,7 @@ class Dut(Crb):
>          Setup current virtualization hypervisor type and remove elder VM
> ssh keys
>          """
>          self.virttype = virttype
> -        # remove VM ras keys from tester
> +        # remove VM rsa keys from tester
>          remove_old_rsa_key(self.tester, self.crb['My IP'])
> 
>      def generate_sriov_vfs_by_port(self, port_id, vf_num,
> driver='default'):
> --
> 1.8.3.1

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

* [dts] [PATCH] framework/dut: fix a typo
@ 2019-01-01  6:12 Rami Rosen
  2019-01-07  5:17 ` Tu, Lijuan
  0 siblings, 1 reply; 6+ messages in thread
From: Rami Rosen @ 2019-01-01  6:12 UTC (permalink / raw)
  To: dts; +Cc: Rami Rosen

This patch fixes a typo in framework/dut.py

Signed-off-by: Rami Rosen <ramirose@gmail.com>
---
 framework/dut.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/dut.py b/framework/dut.py
index a8116ff..41a7516 100644
--- a/framework/dut.py
+++ b/framework/dut.py
@@ -806,7 +806,7 @@ class Dut(Crb):
         Setup current virtualization hypervisor type and remove elder VM ssh keys
         """
         self.virttype = virttype
-        # remove VM ras keys from tester
+        # remove VM rsa keys from tester
         remove_old_rsa_key(self.tester, self.crb['My IP'])
 
     def generate_sriov_vfs_by_port(self, port_id, vf_num, driver='default'):
-- 
1.8.3.1

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

* Re: [dts] [PATCH] framework/dut: fix a typo
  2018-04-16 19:04 Rami Rosen
@ 2018-04-20  8:46 ` Liu, Yong
  0 siblings, 0 replies; 6+ messages in thread
From: Liu, Yong @ 2018-04-20  8:46 UTC (permalink / raw)
  To: Rami Rosen; +Cc: dts

Thanks Rami, applied.

On 04/17/2018 03:04 AM, Rami Rosen wrote:
> This patch fixes a typo in framework/dut.
>
> Signed-off-by: Rami Rosen<rami.rosen@intel.com>

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

* [dts] [PATCH] framework/dut: fix a typo
@ 2018-04-16 19:04 Rami Rosen
  2018-04-20  8:46 ` Liu, Yong
  0 siblings, 1 reply; 6+ messages in thread
From: Rami Rosen @ 2018-04-16 19:04 UTC (permalink / raw)
  To: yong.liu; +Cc: dts, Rami Rosen

This patch fixes a typo in framework/dut.

Signed-off-by: Rami Rosen <rami.rosen@intel.com>
---
 framework/dut.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/dut.py b/framework/dut.py
index 31b3daa..18f0b39 100644
--- a/framework/dut.py
+++ b/framework/dut.py
@@ -481,7 +481,7 @@ class Dut(Crb):
 
         while len(available_ports) > 0:
             accepted_ports = []
-            # first avaiable port is the reference port
+            # first available port is the reference port
             accepted_ports.append(available_ports[0])
 
             # check from second port according to parameter
-- 
2.14.3

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

end of thread, other threads:[~2019-01-07  5:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-05 18:22 [dts] [PATCH] framework/dut: fix a typo Rami Rosen
2019-01-07  5:07 ` Tu, Lijuan
  -- strict thread matches above, loose matches on Subject: below --
2019-01-01  6:12 Rami Rosen
2019-01-07  5:17 ` Tu, Lijuan
2018-04-16 19:04 Rami Rosen
2018-04-20  8:46 ` Liu, Yong

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