test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH] tests/unit_tests_lpm: add lpm perf and lpm6 perf script
@ 2019-01-09  2:25 Xueqin Lin
  2019-01-11  2:13 ` Tu, Lijuan
  0 siblings, 1 reply; 2+ messages in thread
From: Xueqin Lin @ 2019-01-09  2:25 UTC (permalink / raw)
  To: dts; +Cc: xueqin.lin

From: "xueqin.lin" <xueqin.lin@intel.com>

Signed-off-by: Xueqin Lin <xueqin.lin@intel.com>

---
 tests/TestSuite_unit_tests_lpm.py | 32 +++++++++++++++++++++++++++++---
 1 file changed, 29 insertions(+), 3 deletions(-)

diff --git a/tests/TestSuite_unit_tests_lpm.py b/tests/TestSuite_unit_tests_lpm.py
index 8a09ff2..6e73148 100644
--- a/tests/TestSuite_unit_tests_lpm.py
+++ b/tests/TestSuite_unit_tests_lpm.py
@@ -71,9 +71,11 @@ class TestUnitTestsLpmIpv6(TestCase):
 
     def test_lpm(self):
         """
-        Run lpm for IPv6 autotest.
+        Run lpm for IPv4 autotest.
         """
-        self.dut.send_expect("./%s/app/test -n 1 -c %s" % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
+        self.dut.send_expect(
+            "./%s/app/test -n 1 -c %s"
+            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
         out = self.dut.send_expect("lpm_autotest", "RTE>>", 120)
         self.dut.send_expect("quit", "# ")
         self.verify("Test OK" in out, "Test failed")
@@ -82,11 +84,35 @@ class TestUnitTestsLpmIpv6(TestCase):
         """
         Run lpm for IPv6 autotest.
         """
-        self.dut.send_expect("./%s/app/test -n 1 -c %s" % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
+        self.dut.send_expect(
+            "./%s/app/test -n 1 -c %s"
+            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
         out = self.dut.send_expect("lpm6_autotest", "RTE>>", 120)
         self.dut.send_expect("quit", "# ")
         self.verify("Test OK" in out, "Test failed")
 
+    def test_lpm_perf(self):
+        """
+        Run lpm for IPv4 performance autotest.
+        """
+        self.dut.send_expect(
+            "./%s/app/test -n 1 -c %s"
+            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
+        out = self.dut.send_expect("lpm_perf_autotest", "RTE>>", 600)
+        self.dut.send_expect("quit", "# ")
+        self.verify("Test OK" in out, "Test failed")
+
+    def test_lpm_ipv6_perf(self):
+        """
+        Run lpm for IPv6 performance autotest.
+        """
+        self.dut.send_expect(
+            "./%s/app/test -n 1 -c %s"
+            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
+        out = self.dut.send_expect("lpm6_perf_autotest", "RTE>>", 120)
+        self.dut.send_expect("quit", "# ")
+        self.verify("Test OK" in out, "Test failed")
+
     def tear_down(self):
         """
         Run after each test case.
-- 
2.7.5

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

* Re: [dts] [PATCH] tests/unit_tests_lpm: add lpm perf and lpm6 perf script
  2019-01-09  2:25 [dts] [PATCH] tests/unit_tests_lpm: add lpm perf and lpm6 perf script Xueqin Lin
@ 2019-01-11  2:13 ` Tu, Lijuan
  0 siblings, 0 replies; 2+ messages in thread
From: Tu, Lijuan @ 2019-01-11  2:13 UTC (permalink / raw)
  To: Lin, Xueqin, dts; +Cc: Lin, Xueqin

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xueqin Lin
> Sent: Wednesday, January 9, 2019 10:26 AM
> To: dts@dpdk.org
> Cc: Lin, Xueqin <xueqin.lin@intel.com>
> Subject: [dts] [PATCH] tests/unit_tests_lpm: add lpm perf and lpm6 perf script
> 
> From: "xueqin.lin" <xueqin.lin@intel.com>
> 
> Signed-off-by: Xueqin Lin <xueqin.lin@intel.com>
> 
> ---
>  tests/TestSuite_unit_tests_lpm.py | 32 +++++++++++++++++++++++++++++---
>  1 file changed, 29 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/TestSuite_unit_tests_lpm.py
> b/tests/TestSuite_unit_tests_lpm.py
> index 8a09ff2..6e73148 100644
> --- a/tests/TestSuite_unit_tests_lpm.py
> +++ b/tests/TestSuite_unit_tests_lpm.py
> @@ -71,9 +71,11 @@ class TestUnitTestsLpmIpv6(TestCase):
> 
>      def test_lpm(self):
>          """
> -        Run lpm for IPv6 autotest.
> +        Run lpm for IPv4 autotest.
>          """
> -        self.dut.send_expect("./%s/app/test -n 1 -c %s" % (self.target,
> self.coremask), "R.*T.*E.*>.*>", 60)
> +        self.dut.send_expect(
> +            "./%s/app/test -n 1 -c %s"
> +            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
>          out = self.dut.send_expect("lpm_autotest", "RTE>>", 120)
>          self.dut.send_expect("quit", "# ")
>          self.verify("Test OK" in out, "Test failed") @@ -82,11 +84,35 @@ class
> TestUnitTestsLpmIpv6(TestCase):
>          """
>          Run lpm for IPv6 autotest.
>          """
> -        self.dut.send_expect("./%s/app/test -n 1 -c %s" % (self.target,
> self.coremask), "R.*T.*E.*>.*>", 60)
> +        self.dut.send_expect(
> +            "./%s/app/test -n 1 -c %s"
> +            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
>          out = self.dut.send_expect("lpm6_autotest", "RTE>>", 120)
>          self.dut.send_expect("quit", "# ")
>          self.verify("Test OK" in out, "Test failed")
> 
> +    def test_lpm_perf(self):
> +        """
> +        Run lpm for IPv4 performance autotest.
> +        """
> +        self.dut.send_expect(
> +            "./%s/app/test -n 1 -c %s"
> +            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
> +        out = self.dut.send_expect("lpm_perf_autotest", "RTE>>", 600)
> +        self.dut.send_expect("quit", "# ")
> +        self.verify("Test OK" in out, "Test failed")
> +
> +    def test_lpm_ipv6_perf(self):
> +        """
> +        Run lpm for IPv6 performance autotest.
> +        """
> +        self.dut.send_expect(
> +            "./%s/app/test -n 1 -c %s"
> +            % (self.target, self.coremask), "R.*T.*E.*>.*>", 60)
> +        out = self.dut.send_expect("lpm6_perf_autotest", "RTE>>", 120)
> +        self.dut.send_expect("quit", "# ")
> +        self.verify("Test OK" in out, "Test failed")
> +
>      def tear_down(self):
>          """
>          Run after each test case.
> --
> 2.7.5

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

end of thread, other threads:[~2019-01-11  2:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-09  2:25 [dts] [PATCH] tests/unit_tests_lpm: add lpm perf and lpm6 perf script Xueqin Lin
2019-01-11  2:13 ` 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).