test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH] tests/TestSuite_vhost_pmd_xstats: fix typos
@ 2019-02-11  6:05 Rami Rosen
  2019-02-26  2:55 ` Tu, Lijuan
  0 siblings, 1 reply; 3+ messages in thread
From: Rami Rosen @ 2019-02-11  6:05 UTC (permalink / raw)
  To: dts; +Cc: Rami Rosen

This patch fixes typos in TestSuite_vhost_pmd_xstats:
1) In test_stability(), the time interval of the test should be 
30 minutes instead of 2 minutes.
2) Xstats should be xstats (to be consistent with the rest of this module)

Signed-off-by: Rami Rosen <ramirose@gmail.com>
---
 tests/TestSuite_vhost_pmd_xstats.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 mode change 100644 => 100755 tests/TestSuite_vhost_pmd_xstats.py

diff --git a/tests/TestSuite_vhost_pmd_xstats.py b/tests/TestSuite_vhost_pmd_xstats.py
old mode 100644
new mode 100755
index c65f824..e33b342
--- a/tests/TestSuite_vhost_pmd_xstats.py
+++ b/tests/TestSuite_vhost_pmd_xstats.py
@@ -208,7 +208,7 @@ class TestVhostPmdXstats(TestCase):
     def test_stability(self):
         """
         Verify stability case with multiple queues for Vhost PMD xstats
-        Send packets for 30 minutes, check the Xstats still can work correctly
+        Send packets for 2 minutes, check the xstats still can work correctly
         """
         self.scapy_num = 0
         self.prepare_start()
-- 
1.8.3.1

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

* Re: [dts] [PATCH] tests/TestSuite_vhost_pmd_xstats: fix typos
  2019-02-11  6:05 [dts] [PATCH] tests/TestSuite_vhost_pmd_xstats: fix typos Rami Rosen
@ 2019-02-26  2:55 ` Tu, Lijuan
  0 siblings, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2019-02-26  2:55 UTC (permalink / raw)
  To: Rami Rosen, dts

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Rami Rosen
> Sent: Monday, February 11, 2019 2:06 PM
> To: dts@dpdk.org
> Cc: Rami Rosen <ramirose@gmail.com>
> Subject: [dts] [PATCH] tests/TestSuite_vhost_pmd_xstats: fix typos
> 
> This patch fixes typos in TestSuite_vhost_pmd_xstats:
> 1) In test_stability(), the time interval of the test should be
> 30 minutes instead of 2 minutes.
> 2) Xstats should be xstats (to be consistent with the rest of this module)
> 
> Signed-off-by: Rami Rosen <ramirose@gmail.com>
> ---
>  tests/TestSuite_vhost_pmd_xstats.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)  mode change 100644 => 100755
> tests/TestSuite_vhost_pmd_xstats.py
> 
> diff --git a/tests/TestSuite_vhost_pmd_xstats.py
> b/tests/TestSuite_vhost_pmd_xstats.py
> old mode 100644
> new mode 100755
> index c65f824..e33b342
> --- a/tests/TestSuite_vhost_pmd_xstats.py
> +++ b/tests/TestSuite_vhost_pmd_xstats.py
> @@ -208,7 +208,7 @@ class TestVhostPmdXstats(TestCase):
>      def test_stability(self):
>          """
>          Verify stability case with multiple queues for Vhost PMD xstats
> -        Send packets for 30 minutes, check the Xstats still can work correctly
> +        Send packets for 2 minutes, check the xstats still can work
> + correctly
>          """
>          self.scapy_num = 0
>          self.prepare_start()
> --
> 1.8.3.1

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

* [dts] [PATCH] tests/TestSuite_vhost_pmd_xstats: fix typos
@ 2019-01-19 12:47 Rami Rosen
  0 siblings, 0 replies; 3+ messages in thread
From: Rami Rosen @ 2019-01-19 12:47 UTC (permalink / raw)
  To: dts; +Cc: Rami Rosen

Signed-off-by: Rami Rosen <ramirose@gmail.com>
---
 tests/TestSuite_vhost_pmd_xstats.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/TestSuite_vhost_pmd_xstats.py b/tests/TestSuite_vhost_pmd_xstats.py
index a01ca16..c65f824 100644
--- a/tests/TestSuite_vhost_pmd_xstats.py
+++ b/tests/TestSuite_vhost_pmd_xstats.py
@@ -155,7 +155,7 @@ class TestVhostPmdXstats(TestCase):
 
     def test_based_size(self):
         """
-        Verify receiving and transmitting packets correctly in the Vhsot PMD xstats
+        Verify receiving and transmitting packets correctly in the Vhost PMD xstats
         """
         self.prepare_start()
         sizes = [64, 65, 128, 256, 513, 1025]
@@ -189,7 +189,7 @@ class TestVhostPmdXstats(TestCase):
 
     def test_based_types(self):
         """
-        Verify different type of packets receiving and transmitting packets correctly in the Vhsot PMD xstats
+        Verify different type of packets receiving and transmitting packets correctly in the Vhost PMD xstats
         """
         self.prepare_start()
         types = ['ff:ff:ff:ff:ff:ff', '01:00:00:33:00:01']
@@ -207,8 +207,8 @@ class TestVhostPmdXstats(TestCase):
 
     def test_stability(self):
         """
-        Verify stability case with multiple queues for Vhsot PMD xstats 
-        Send packets for 30 minutes, check the Xstatsa still can work correctly
+        Verify stability case with multiple queues for Vhost PMD xstats
+        Send packets for 30 minutes, check the Xstats still can work correctly
         """
         self.scapy_num = 0
         self.prepare_start()
-- 
2.19.2

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

end of thread, other threads:[~2019-02-26  2:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-11  6:05 [dts] [PATCH] tests/TestSuite_vhost_pmd_xstats: fix typos Rami Rosen
2019-02-26  2:55 ` Tu, Lijuan
  -- strict thread matches above, loose matches on Subject: below --
2019-01-19 12:47 Rami Rosen

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