test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] discard malloc unit test case
@ 2017-08-11  8:42 xu,huilong
  2017-08-11  8:42 ` [dts] [PATCH V2] fix ring test case, because dpdk remove set_watermark cmdline xu,huilong
  2017-08-14 12:18 ` [dts] [PATCH V2] discard malloc unit test case Liu, Yong
  0 siblings, 2 replies; 4+ messages in thread
From: xu,huilong @ 2017-08-11  8:42 UTC (permalink / raw)
  To: dts; +Cc: xu,huilong

malloc unit test cmdline still existing, but development not maintain
so should discard this case, the detaile info please see dpdk-2340 in jira.  

Signed-off-by: xu,huilong <huilongx.xu@intel.com>
---
 tests/TestSuite_unit_tests_eal.py | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/tests/TestSuite_unit_tests_eal.py b/tests/TestSuite_unit_tests_eal.py
index ba58891..26fb1b3 100644
--- a/tests/TestSuite_unit_tests_eal.py
+++ b/tests/TestSuite_unit_tests_eal.py
@@ -128,16 +128,6 @@ class TestUnitTestsEal(TestCase):
         self.dut.send_expect("quit", "# ")
         self.verify("Test OK" in out, "Test failed")
 
-    def test_malloc(self):
-        """
-        Run malloc autotest.
-        """
-
-        self.dut.send_expect(self.test_app_cmdline, "R.*T.*E.*>.*>", self.start_test_time)
-        out = self.dut.send_expect("malloc_autotest", "RTE>>", self.run_cmd_time)
-        self.dut.send_expect("quit", "# ")
-        self.verify("Test OK" in out, "Test failed")
-
     def test_func_reentrancy(self):
         """
         Run function reentrancy autotest.
-- 
1.9.3

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

* [dts] [PATCH V2] fix ring test case, because dpdk remove set_watermark cmdline
  2017-08-11  8:42 [dts] [PATCH V2] discard malloc unit test case xu,huilong
@ 2017-08-11  8:42 ` xu,huilong
  2017-08-11 17:50   ` Liu, Yong
  2017-08-14 12:18 ` [dts] [PATCH V2] discard malloc unit test case Liu, Yong
  1 sibling, 1 reply; 4+ messages in thread
From: xu,huilong @ 2017-08-11  8:42 UTC (permalink / raw)
  To: dts; +Cc: xu,huilong

dpdk remove set_watermark cmdline already, detaile info see dpdk.org(commit:77dd30)

Signed-off-by: xu,huilong <huilongx.xu@intel.com>
---
 tests/TestSuite_unit_tests_ring.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tests/TestSuite_unit_tests_ring.py b/tests/TestSuite_unit_tests_ring.py
index 9ef39fa..701ac53 100644
--- a/tests/TestSuite_unit_tests_ring.py
+++ b/tests/TestSuite_unit_tests_ring.py
@@ -71,10 +71,6 @@ class TestUnitTestsRing(TestCase):
         self.dut.send_expect("./%s/app/test -n 1 -c f" % self.target, "R.*T.*E.*>.*>", 60)
         out = self.dut.send_expect("ring_autotest", "RTE>>", 36000)
         self.verify("Test OK" in out, "Test failed")
-        self.dut.send_expect("set_watermark test 100", "RTE>>")
-        out = self.dut.send_expect("dump_ring test", "RTE>>")
-        self.dut.send_expect("quit", "# ")
-        self.verify("watermark=100" in out, "Test failed")
 
     def test_ring_performance(self):
         """
-- 
1.9.3

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

* Re: [dts] [PATCH V2] fix ring test case, because dpdk remove set_watermark cmdline
  2017-08-11  8:42 ` [dts] [PATCH V2] fix ring test case, because dpdk remove set_watermark cmdline xu,huilong
@ 2017-08-11 17:50   ` Liu, Yong
  0 siblings, 0 replies; 4+ messages in thread
From: Liu, Yong @ 2017-08-11 17:50 UTC (permalink / raw)
  To: xu,huilong, dts

Thanks huilong, applied with log modified.

On 08/11/2017 04:42 PM, xu,huilong wrote:
> dpdk remove set_watermark cmdline already, detaile info see dpdk.org(commit:77dd30)
>
> Signed-off-by: xu,huilong<huilongx.xu@intel.com>
> ---
>   tests/TestSuite_unit_tests_ring.py | 4 ----
>   1 file changed, 4 deletions(-)

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

* Re: [dts] [PATCH V2] discard malloc unit test case
  2017-08-11  8:42 [dts] [PATCH V2] discard malloc unit test case xu,huilong
  2017-08-11  8:42 ` [dts] [PATCH V2] fix ring test case, because dpdk remove set_watermark cmdline xu,huilong
@ 2017-08-14 12:18 ` Liu, Yong
  1 sibling, 0 replies; 4+ messages in thread
From: Liu, Yong @ 2017-08-14 12:18 UTC (permalink / raw)
  To: xu,huilong, dts

Thanks huilong. Applied with some commit log changes.

On 08/11/2017 04:42 PM, xu,huilong wrote:
> malloc unit test cmdline still existing, but development not maintain
> so should discard this case, the detaile info please see dpdk-2340 in jira.
>
> Signed-off-by: xu,huilong<huilongx.xu@intel.com>
> ---

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

end of thread, other threads:[~2017-08-14  3:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-11  8:42 [dts] [PATCH V2] discard malloc unit test case xu,huilong
2017-08-11  8:42 ` [dts] [PATCH V2] fix ring test case, because dpdk remove set_watermark cmdline xu,huilong
2017-08-11 17:50   ` Liu, Yong
2017-08-14 12:18 ` [dts] [PATCH V2] discard malloc unit test case 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).