test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Zhang, XiX" <xix.zhang@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Zhang, XiX" <xix.zhang@intel.com>
Subject: Re: [dts] [PATCH V1] TestSuite_shutdown_api/check_rxtx_desc_status:The	maximum number of queues for springville is 4
Date: Fri, 24 Jul 2020 02:18:17 +0000	[thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BC83F79@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1594885501-1462-1-git-send-email-xix.zhang@intel.com>

Applied, thanks

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of xizhan4x
> Sent: 2020年7月16日 15:45
> To: dts@dpdk.org
> Cc: Zhang, XiX <xix.zhang@intel.com>
> Subject: [dts] [PATCH V1] TestSuite_shutdown_api/check_rxtx_desc_status:The
> maximum number of queues for springville is 4
> 
> The maximum number of queues for springville  is 4
> 
> Signed-off-by: xizhan4x <xix.zhang@intel.com>
> ---
>  tests/TestSuite_shutdown_api.py | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/TestSuite_shutdown_api.py b/tests/TestSuite_shutdown_api.py
> index 650ccfc..3f42f93 100644
> --- a/tests/TestSuite_shutdown_api.py
> +++ b/tests/TestSuite_shutdown_api.py
> @@ -793,10 +793,15 @@ class TestShutdownApi(TestCase):
>          When rx_descriptor_status is used, status can be “AVAILABLE”, “DONE” or
> “UNAVAILABLE”.
>          When tx_descriptor_status is used, status can be “FULL”, “DONE” or
> “UNAVAILABLE.”
>          """
> -        self.pmdout.start_testpmd("Default", "--portmask=%s --port-
> topology=loop --txq=16 --rxq=16 --txd=4096 --rxd=4096" %
> utils.create_mask(self.ports), socket=self.ports_socket)
> +        queue_num=16
> +        if self.nic in ["springville"]:
> +            queue_num=4
> +        self.pmdout.start_testpmd("Default",
> +                                 "--portmask=%s --port-topology=loop --txq=%s --rxq=%s --
> txd=4096 --rxd=4096"
> +                                 %
> + (utils.create_mask(self.ports),queue_num,queue_num),
> + socket=self.ports_socket)
> 
>          for i in range(3):
> -            rxqid = randint(0, 16)
> +            rxqid = randint(0, queue_num-1)
>              self.desc = randint(0, 4095)
>              out = self.dut.send_expect("show port %s rxq %s desc %s status" %
> (self.ports[0], rxqid, self.desc), "testpmd> ")
>              self.verify(
> @@ -805,7 +810,7 @@ class TestShutdownApi(TestCase):
>              self.verify(
>                  "Bad arguments" not in out and "Invalid queueid" not in out,
>                  "RX descriptor status is not supported")
> -            txqid = randint(0, 16)
> +            txqid = randint(0, queue_num-1)
>              self.desc = randint(0, 511)
>              out = self.dut.send_expect("show port %s txq %s desc %s status" %
> (self.ports[0], txqid, self.desc), "testpmd> ")
>              self.verify(
> --
> 1.8.3.1


      parent reply	other threads:[~2020-07-24  2:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-16  7:45 xizhan4x
2020-07-16  7:45 ` Zhang, XiX
2020-07-24  2:18 ` 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=8CE3E05A3F976642AAB0F4675D0AD20E0BC83F79@SHSMSX101.ccr.corp.intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=xix.zhang@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).