test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts]  optimize  multi_process testscript to fix some bugs
@ 2015-07-07  6:13 Haifeng Tang
  2015-07-07  6:21 ` Liu, Yong
  0 siblings, 1 reply; 2+ messages in thread
From: Haifeng Tang @ 2015-07-07  6:13 UTC (permalink / raw)
  To: dts

From: TangHaifeng <haifengx.tang@intel.com>


Signed-off-by: TangHaifeng <haifengx.tang@intel.com>
---
 tests/TestSuite_multiprocess.py |   53 +++++++++++++++++++++-----------------
 1 files changed, 29 insertions(+), 24 deletions(-)

diff --git a/tests/TestSuite_multiprocess.py b/tests/TestSuite_multiprocess.py
index 4ef5313..3a37884 100644
--- a/tests/TestSuite_multiprocess.py
+++ b/tests/TestSuite_multiprocess.py
@@ -37,7 +37,7 @@ Multi-process Test.
 import dts
 import time
 from etgen import IxiaPacketGenerator
-
+import pdb
 executions = []
 from test_case import TestCase
 
@@ -68,6 +68,7 @@ class TestMultiprocess(TestCase, IxiaPacketGenerator):
         executions.append({'nprocs': 4, 'cores': '1S/2C/2T', 'pps': 0})
         executions.append({'nprocs': 4, 'cores': '1S/4C/1T', 'pps': 0})
         executions.append({'nprocs': 8, 'cores': '1S/4C/2T', 'pps': 0})
+        self.dut.alt_session.send_expect("cd dpdk","# ",5)
 
     def set_up(self):
         """
@@ -79,28 +80,32 @@ class TestMultiprocess(TestCase, IxiaPacketGenerator):
         """
         Basic operation.
         """
-
+        #self.dut.alt_session.send_expect("cd dpdk","# ",5)
         # Send message from secondary to primary
-        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary > out &" % self.target, "# ", 10)
+        #self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary > out &" % self.target, "# ", 10)
+        self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary |tee out  " % self.target, "Finished Process Init", 100)
         time.sleep(20)
-        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=secondary" % self.target, "Finished Process Init", 10)
+        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=secondary" % self.target, "Finished Process Init", 100)
 
         self.dut.send_expect("send hello_primary", ">")
         self.dut.send_expect("quit", "# ")
-        self.dut.send_expect("fg", "simple_mp")
-        self.dut.send_expect("quit", "# ")
-        out = self.dut.send_expect("cat out", "# ")
-
+        #self.dut.send_expect("fg", "simple_mp")
+        #self.dut.send_expect("quit", "# ")
+        #out = self.dut.send_expect("cat out", "# ")
+        self.dut.alt_session.send_expect("quit","# ")
+        out = self.dut.alt_session.send_expect("cat out","# ")
         self.verify("Received 'hello_primary'" in out, "Message not received on primary process")
-
+        self.dut.kill_all()
         # Send message from primary to secondary
-        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary &" % self.target, "# ", 10)
+        #self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary & " % self.target, "# ", 10)
+        self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary " % self.target, "Finished Process Init", 10)
         time.sleep(20)
-        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=secondary > out &" % self.target, "Finished Process Init", 10)
-        self.dut.send_expect("fg 1", "simple_mp")
-        self.dut.send_expect("send hello_secondary", ">")
-        self.dut.send_expect("quit", "# ")
-        self.dut.send_expect("fg 2", "simple_mp")
+        #self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=secondary > out &" % self.target, "Finished Process Init", 10)
+        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=secondary | tee out  " % self.target, "Finished Process Init", 10)
+        #elf.dut.send_expect("fg 1", "simple_mp")
+        self.dut.alt_session.send_expect("send hello_secondary", ">")
+        self.dut.alt_session.send_expect("quit", "# ")
+        #self.dut.send_expect("fg 2", "simple_mp")
         self.dut.send_expect("quit", "# ")
         out = self.dut.send_expect("cat out", "# ")
 
@@ -138,7 +143,7 @@ class TestMultiprocess(TestCase, IxiaPacketGenerator):
         self.dut.kill_all()
 
         # Send message from secondary to primary (auto process type)
-        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=auto > out &" % self.target, "# ", 30)
+        self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=auto |tee out " % self.target, "Finished Process Init", 30)
         time.sleep(20)
         out = self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=auto" % self.target, "Finished Process Init", 30)
         self.verify("EAL: Auto-detected process type: SECONDARY" in out,
@@ -146,21 +151,21 @@ class TestMultiprocess(TestCase, IxiaPacketGenerator):
 
         self.dut.send_expect("send hello_primary", ">")
         self.dut.send_expect("quit", "# ")
-        self.dut.send_expect("fg", "simple_mp")
-        self.dut.send_expect("quit", "# ")
+        #self.dut.send_expect("fg", "simple_mp")
+        self.dut.alt_session.send_expect("quit", "# ")
         out = self.dut.send_expect("cat out", "# ")
 
         self.verify("EAL: Auto-detected process type: PRIMARY" in out, "The type of process (PRIMARY) was not detected properly")
         self.verify("Received 'hello_primary'" in out, "Message not received on primary process")
 
         # Send message from primary to secondary (auto process type)
-        out = self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=auto > out_primary &" % self.target, "# ", 30)
+        out = self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c 3 --proc-type=auto |tee out_primary " % self.target, "Finished Process Init", 30)
         time.sleep(20)
-        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=auto > out_secondary &" % self.target, "#", 30)
-        self.dut.send_expect("fg 1", "simple_mp")
-        self.dut.send_expect("send hello_secondary", ">")
-        self.dut.send_expect("quit", "# ")
-        self.dut.send_expect("fg 2", "simple_mp")
+        self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simple_mp -n 1 -c C --proc-type=auto |tee out_secondary " % self.target, "Finished Process Init", 30)
+        #self.dut.send_expect("fg 1", "simple_mp")
+        self.dut.alt_session.send_expect("send hello_secondary", ">",100)
+        self.dut.alt_session.send_expect("quit", "# ")
+        #self.dut.send_expect("fg 2", "simple_mp")
         self.dut.send_expect("quit", "# ")
         out = self.dut.send_expect("cat out_primary", "# ")
         self.verify("EAL: Auto-detected process type: PRIMARY" in out, "The type of process (PRIMARY) was not detected properly")
-- 
1.7.4.4

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

* Re: [dts] optimize  multi_process testscript to fix some bugs
  2015-07-07  6:13 [dts] optimize multi_process testscript to fix some bugs Haifeng Tang
@ 2015-07-07  6:21 ` Liu, Yong
  0 siblings, 0 replies; 2+ messages in thread
From: Liu, Yong @ 2015-07-07  6:21 UTC (permalink / raw)
  To: Tang, HaifengX, dts

Haifeng, please remove those useless codes prefixed with "#".

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Haifeng Tang
> Sent: Tuesday, July 07, 2015 2:13 PM
> To: dts@dpdk.org
> Subject: [dts] optimize multi_process testscript to fix some bugs
> 
> From: TangHaifeng <haifengx.tang@intel.com>
> 
> 
> Signed-off-by: TangHaifeng <haifengx.tang@intel.com>
> ---
>  tests/TestSuite_multiprocess.py |   53 +++++++++++++++++++++-------------
> ----
>  1 files changed, 29 insertions(+), 24 deletions(-)
> 
> diff --git a/tests/TestSuite_multiprocess.py
> b/tests/TestSuite_multiprocess.py
> index 4ef5313..3a37884 100644
> --- a/tests/TestSuite_multiprocess.py
> +++ b/tests/TestSuite_multiprocess.py
> @@ -37,7 +37,7 @@ Multi-process Test.
>  import dts
>  import time
>  from etgen import IxiaPacketGenerator
> -
> +import pdb
>  executions = []
>  from test_case import TestCase
> 
> @@ -68,6 +68,7 @@ class TestMultiprocess(TestCase, IxiaPacketGenerator):
>          executions.append({'nprocs': 4, 'cores': '1S/2C/2T', 'pps': 0})
>          executions.append({'nprocs': 4, 'cores': '1S/4C/1T', 'pps': 0})
>          executions.append({'nprocs': 8, 'cores': '1S/4C/2T', 'pps': 0})
> +        self.dut.alt_session.send_expect("cd dpdk","# ",5)
> 
>      def set_up(self):
>          """
> @@ -79,28 +80,32 @@ class TestMultiprocess(TestCase, IxiaPacketGenerator):
>          """
>          Basic operation.
>          """
> -
> +        #self.dut.alt_session.send_expect("cd dpdk","# ",5)
>          # Send message from secondary to primary
> -
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c 3 --proc-type=primary > out &" % self.target, "# ", 10)
> +
> #self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/sim
> ple_mp -n 1 -c 3 --proc-type=primary > out &" % self.target, "# ", 10)
> +
> self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simpl
> e_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary |tee out  " % self.target,
> "Finished Process Init", 100)
>          time.sleep(20)
> -
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c C --proc-type=secondary" % self.target, "Finished Process
> Init", 10)
> +
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c C --proc-type=secondary" % self.target, "Finished Process
> Init", 100)
> 
>          self.dut.send_expect("send hello_primary", ">")
>          self.dut.send_expect("quit", "# ")
> -        self.dut.send_expect("fg", "simple_mp")
> -        self.dut.send_expect("quit", "# ")
> -        out = self.dut.send_expect("cat out", "# ")
> -
> +        #self.dut.send_expect("fg", "simple_mp")
> +        #self.dut.send_expect("quit", "# ")
> +        #out = self.dut.send_expect("cat out", "# ")
> +        self.dut.alt_session.send_expect("quit","# ")
> +        out = self.dut.alt_session.send_expect("cat out","# ")
>          self.verify("Received 'hello_primary'" in out, "Message not
> received on primary process")
> -
> +        self.dut.kill_all()
>          # Send message from primary to secondary
> -
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c 3 --proc-type=primary &" % self.target, "# ", 10)
> +
> #self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/sim
> ple_mp -n 1 -c 3 --proc-type=primary & " % self.target, "# ", 10)
> +
> self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simpl
> e_mp/%s/simple_mp -n 1 -c 3 --proc-type=primary " % self.target, "Finished
> Process Init", 10)
>          time.sleep(20)
> -
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c C --proc-type=secondary > out &" % self.target, "Finished
> Process Init", 10)
> -        self.dut.send_expect("fg 1", "simple_mp")
> -        self.dut.send_expect("send hello_secondary", ">")
> -        self.dut.send_expect("quit", "# ")
> -        self.dut.send_expect("fg 2", "simple_mp")
> +
> #self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/sim
> ple_mp -n 1 -c C --proc-type=secondary > out &" % self.target, "Finished
> Process Init", 10)
> +
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c C --proc-type=secondary | tee out  " % self.target,
> "Finished Process Init", 10)
> +        #elf.dut.send_expect("fg 1", "simple_mp")
> +        self.dut.alt_session.send_expect("send hello_secondary", ">")
> +        self.dut.alt_session.send_expect("quit", "# ")
> +        #self.dut.send_expect("fg 2", "simple_mp")
>          self.dut.send_expect("quit", "# ")
>          out = self.dut.send_expect("cat out", "# ")
> 
> @@ -138,7 +143,7 @@ class TestMultiprocess(TestCase, IxiaPacketGenerator):
>          self.dut.kill_all()
> 
>          # Send message from secondary to primary (auto process type)
> -
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c 3 --proc-type=auto > out &" % self.target, "# ", 30)
> +
> self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simpl
> e_mp/%s/simple_mp -n 1 -c 3 --proc-type=auto |tee out " % self.target,
> "Finished Process Init", 30)
>          time.sleep(20)
>          out =
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c C --proc-type=auto" % self.target, "Finished Process Init",
> 30)
>          self.verify("EAL: Auto-detected process type: SECONDARY" in out,
> @@ -146,21 +151,21 @@ class TestMultiprocess(TestCase,
> IxiaPacketGenerator):
> 
>          self.dut.send_expect("send hello_primary", ">")
>          self.dut.send_expect("quit", "# ")
> -        self.dut.send_expect("fg", "simple_mp")
> -        self.dut.send_expect("quit", "# ")
> +        #self.dut.send_expect("fg", "simple_mp")
> +        self.dut.alt_session.send_expect("quit", "# ")
>          out = self.dut.send_expect("cat out", "# ")
> 
>          self.verify("EAL: Auto-detected process type: PRIMARY" in out,
> "The type of process (PRIMARY) was not detected properly")
>          self.verify("Received 'hello_primary'" in out, "Message not
> received on primary process")
> 
>          # Send message from primary to secondary (auto process type)
> -        out =
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c 3 --proc-type=auto > out_primary &" % self.target, "# ", 30)
> +        out =
> self.dut.alt_session.send_expect("./examples/multi_process/simple_mp/simpl
> e_mp/%s/simple_mp -n 1 -c 3 --proc-type=auto |tee out_primary " %
> self.target, "Finished Process Init", 30)
>          time.sleep(20)
> -
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c C --proc-type=auto > out_secondary &" % self.target, "#", 30)
> -        self.dut.send_expect("fg 1", "simple_mp")
> -        self.dut.send_expect("send hello_secondary", ">")
> -        self.dut.send_expect("quit", "# ")
> -        self.dut.send_expect("fg 2", "simple_mp")
> +
> self.dut.send_expect("./examples/multi_process/simple_mp/simple_mp/%s/simp
> le_mp -n 1 -c C --proc-type=auto |tee out_secondary " % self.target,
> "Finished Process Init", 30)
> +        #self.dut.send_expect("fg 1", "simple_mp")
> +        self.dut.alt_session.send_expect("send hello_secondary", ">",100)
> +        self.dut.alt_session.send_expect("quit", "# ")
> +        #self.dut.send_expect("fg 2", "simple_mp")
>          self.dut.send_expect("quit", "# ")
>          out = self.dut.send_expect("cat out_primary", "# ")
>          self.verify("EAL: Auto-detected process type: PRIMARY" in out,
> "The type of process (PRIMARY) was not detected properly")
> --
> 1.7.4.4

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

end of thread, other threads:[~2015-07-07  6:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-07  6:13 [dts] optimize multi_process testscript to fix some bugs Haifeng Tang
2015-07-07  6:21 ` 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).