From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Xiao, QimaiX" <qimaix.xiao@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Xiao, QimaiX" <qimaix.xiao@intel.com>
Subject: Re: [dts] [PATCH V1] update case for env with lcores less than 10
Date: Wed, 10 Jul 2019 05:32:23 +0000 [thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BADE93D@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1562143534-137282-1-git-send-email-qimaix.xiao@intel.com>
Applied, thanks
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of xiao,qimai
> Sent: Wednesday, July 3, 2019 4:46 PM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V1] update case for env with lcores less than 10
>
> modify coremask to 5,6 rather than 9,10 to run on env with only 8 lcores.
>
> Signed-off-by: xiao,qimai <qimaix.xiao@intel.com>
> ---
> tests/TestSuite_multiprocess.py | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/tests/TestSuite_multiprocess.py
> b/tests/TestSuite_multiprocess.py index a22266a..b690d81 100644
> --- a/tests/TestSuite_multiprocess.py
> +++ b/tests/TestSuite_multiprocess.py
> @@ -97,7 +97,7 @@ class TestMultiprocess(TestCase):
> coremask = utils.create_mask(cores)
>
> self.dut.send_expect("./examples/multi_process/simple_mp/%s/simple_mp -
> n 1 -c %s --proc-type=primary" % (self.target, coremask), "Finished Process
> Init", 100)
> time.sleep(20)
> - coremask = hex(int(coremask, 16) * 0x100).rstrip("L")
> + coremask = hex(int(coremask, 16) * 0x10).rstrip("L")
>
> self.session_secondary.send_expect("./examples/multi_process/simple_mp/
> %s/simple_mp -n 1 -c %s --proc-type=secondary" % (self.target, coremask),
> "Finished Process Init", 100)
>
> self.session_secondary.send_expect("send hello_primary", ">") @@ -
> 110,7 +110,7 @@ class TestMultiprocess(TestCase):
> coremask = utils.create_mask(cores)
>
> self.session_secondary.send_expect("./examples/multi_process/simple_mp/
> %s/simple_mp -n 1 -c %s --proc-type=primary " % (self.target, coremask),
> "Finished Process Init", 100)
> time.sleep(20)
> - coremask = hex(int(coremask, 16) * 0x100).rstrip("L")
> + coremask = hex(int(coremask, 16) * 0x10).rstrip("L")
>
> self.dut.send_expect("./examples/multi_process/simple_mp/%s/simple_mp -
> n 1 -c %s --proc-type=secondary" % (self.target, coremask), "Finished Process
> Init", 100)
> self.session_secondary.send_expect("send hello_secondary", ">")
> out = self.dut.get_session_output() @@ -129,7 +129,7 @@ class
> TestMultiprocess(TestCase):
> coremask = utils.create_mask(cores)
>
> self.session_secondary.send_expect("./examples/multi_process/simple_mp/
> %s/simple_mp -n 1 -c %s --proc-type=primary" % (self.target, coremask),
> "Finished Process Init", 100)
> time.sleep(20)
> - coremask = hex(int(coremask, 16) * 0x100).rstrip("L")
> + coremask = hex(int(coremask, 16) * 0x10).rstrip("L")
>
> self.dut.send_expect("./examples/multi_process/simple_mp/%s/simple_mp -
> n 1 -c %s --proc-type=secondary" % (self.target, coremask), "Finished Process
> Init", 100)
> stringsSent = 0
> for line in open('/usr/share/dict/words', 'r').readlines():
> @@ -154,7 +154,7 @@ class TestMultiprocess(TestCase):
> out =
> self.dut.send_expect("./examples/multi_process/simple_mp/%s/simple_mp -
> n 1 -c %s --proc-type=auto " % (self.target, coremask), "Finished Process Init",
> 100)
> self.verify("EAL: Auto-detected process type: PRIMARY" in out, "The
> type of process (PRIMARY) was not detected properly")
> time.sleep(20)
> - coremask = hex(int(coremask, 16) * 0x100).rstrip("L")
> + coremask = hex(int(coremask, 16) * 0x10).rstrip("L")
> out =
> self.session_secondary.send_expect("./examples/multi_process/simple_mp/
> %s/simple_mp -n 1 -c %s --proc-type=auto" % (self.target, coremask),
> "Finished Process Init", 100)
> self.verify("EAL: Auto-detected process type: SECONDARY" in out,
> "The type of process (SECONDARY) was not detected properly")
> @@ -171,7 +171,7 @@ class TestMultiprocess(TestCase):
> out =
> self.session_secondary.send_expect("./examples/multi_process/simple_mp/
> %s/simple_mp -n 1 -c %s --proc-type=auto" % (self.target, coremask),
> "Finished Process Init", 100)
> self.verify("EAL: Auto-detected process type: PRIMARY" in out, "The
> type of process (PRIMARY) was not detected properly")
> time.sleep(20)
> - coremask = hex(int(coremask, 16) * 0x100).rstrip("L")
> + coremask = hex(int(coremask, 16) * 0x10).rstrip("L")
> out =
> self.dut.send_expect("./examples/multi_process/simple_mp/%s/simple_mp -
> n 1 -c %s --proc-type=auto" % (self.target, coremask), "Finished Process Init",
> 100)
> self.verify("EAL: Auto-detected process type: SECONDARY" in out, "The
> type of process (SECONDARY) was not detected properly")
> self.session_secondary.send_expect("send hello_secondary", ">",100)
> @@ -190,7 +190,7 @@ class TestMultiprocess(TestCase):
> cores = self.dut.get_core_list('1S/2C/1T')
> coremask = utils.create_mask(cores)
>
> self.session_secondary.send_expect("./examples/multi_process/simple_mp/
> %s/simple_mp -n 1 -c %s -m 64" % (self.target, coremask), "Finished Process
> Init", 100)
> - coremask = hex(int(coremask, 16) * 0x100).rstrip("L")
> + coremask = hex(int(coremask, 16) * 0x10).rstrip("L")
> out =
> self.dut.send_expect("./examples/multi_process/simple_mp/%s/simple_mp -
> n 1 -c %s" % (self.target, coremask), "# ", 100)
>
> self.verify("Is another primary process running" in out,
> --
> 2.17.1
prev parent reply other threads:[~2019-07-10 5:32 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-03 8:45 xiao,qimai
2019-07-03 9:03 ` Yao, BingX Y
2019-07-10 5:32 ` Tu, Lijuan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8CE3E05A3F976642AAB0F4675D0AD20E0BADE93D@SHSMSX101.ccr.corp.intel.com \
--to=lijuan.tu@intel.com \
--cc=dts@dpdk.org \
--cc=qimaix.xiao@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).