From: "Qiu, Michael" <michael.qiu@intel.com>
To: "Liu, Yong" <yong.liu@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Subject: Re: [dts] [PATCH 2/3] tests: Add RRC support in suit scatter
Date: Wed, 8 Jul 2015 01:49:38 +0000 [thread overview]
Message-ID: <533710CFB86FA344BFBF2D6802E60286046B212C@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <86228AFD5BCD8E4EBFD2B90117B5E81E10E5AD6A@SHSMSX103.ccr.corp.intel.com>
On 7/8/2015 8:57 AM, Liu, Yong wrote:
> Michael,
> Look like scatter feature only validated on Niantic, Fortville, RRC these three types of card.
> We can check NIC type in set_up_all function and not need these duplicated checking code.
It make sense, I will rework for V2
Thanks,
Michael
>
>> -----Original Message-----
>> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Michael Qiu
>> Sent: Tuesday, July 07, 2015 5:38 PM
>> To: dts@dpdk.org
>> Subject: [dts] [PATCH 2/3] tests: Add RRC support in suit scatter
>>
>> Add RRC support in suit scatter
>>
>> Signed-off-by: Michael Qiu <michael.qiu>
>> ---
>> tests/TestSuite_scatter.py | 15 ++++++++-------
>> 1 file changed, 8 insertions(+), 7 deletions(-)
>>
>> diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
>> index 643fe4a..130898f 100644
>> --- a/tests/TestSuite_scatter.py
>> +++ b/tests/TestSuite_scatter.py
>> @@ -62,10 +62,11 @@ class TestScatter(TestCase):
>> """
>> sport = self.tester.get_local_port(sPortid)
>> sintf = self.tester.get_interface(sport)
>> - smac = self.dut.get_mac_address(sPortid)
>> + smac = self.tester.get_mac(sport)
>> + dmac = self.dut.get_mac_address(sPortid)
>> rport = self.tester.get_local_port(rPortid)
>> rintf = self.tester.get_interface(rport)
>> - if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single"]:
>> + if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single", "redrockcanyou"]:
>> self.tester.send_expect("ifconfig %s mtu 9000" % sintf, "#")
>> self.tester.send_expect("ifconfig %s mtu 9000" % rintf, "#")
>>
>> @@ -79,10 +80,10 @@ class TestScatter(TestCase):
>>
>> self.tester.scapy_foreground()
>> self.tester.scapy_append(
>> - 'sendp([Ether(dst="%s")/IP(len=%s)/Raw(load="\x50"*%s)],
>> iface="%s")' % (smac, pktlen, padding, sintf))
>> +
>> 'sendp([Ether(src="%s",dst="%s")/IP(len=%s)/Raw(load="\x50"*%s)],
>> iface="%s")' % (smac, dmac,pktlen, padding, sintf))
>> self.tester.scapy_execute()
>> res = self.tester.scapy_get_result()
>> - if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single"]:
>> + if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single", "redrockcanyou"]:
>> self.tester.send_expect("ifconfig %s mtu 1500" % sintf, "#")
>> self.tester.send_expect("ifconfig %s mtu 1500" % sintf, "#")
>> return res
>> @@ -103,7 +104,7 @@ class TestScatter(TestCase):
>> portMask = dts.create_mask(dutPorts[:2])
>>
>> # set the mbuf size to 1024
>> - if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single"]:
>> + if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single", "redrockcanyou"]:
>> out = self.pmdout.start_testpmd(
>> "1S/2C/2T", "--mbcache=200 --mbuf-size=2048 --portmask=%s
>> --max-pkt-len=9000" % portMask)
>> else:
>> @@ -111,12 +112,12 @@ class TestScatter(TestCase):
>> "1S/2C/2T", "--mbcache=200 --mbuf-size=1024 --
>> portmask=%s" % portMask)
>> self.verify("Error" not in out, "launch error 1")
>>
>> - if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single"]:
>> + if self.nic in ["niantic", "fortville_eagle", "fortville_spirit",
>> "fortville_spirit_single", "redrockcanyou"]:
>> self.dut.send_expect("set fwd mac", "testpmd> ", 120)
>> self.dut.send_expect("start", "testpmd> ")
>>
>> for offset in [-1, 0, 1, 4, 5]:
>> - if self.nic in ["niantic", "fortville_eagle",
>> "fortville_spirit", "fortville_spirit_single"]:
>> + if self.nic in ["niantic", "fortville_eagle",
>> "fortville_spirit", "fortville_spirit_single", "redrockcanyou"]:
>> ret = self.scatter_pktgen_send_packet(
>> dutPorts[0], dutPorts[1], 2048 + offset)
>> else:
>> --
>> 1.9.3
>
next prev parent reply other threads:[~2015-07-08 1:51 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-07 9:37 [dts] [PATCH 0/3] Add RRC support in test suites Michael Qiu
2015-07-07 9:37 ` [dts] [PATCH 1/3] tests: Add RRC support with jumbo frame Michael Qiu
2015-07-07 9:37 ` [dts] [PATCH 2/3] tests: Add RRC support in suit scatter Michael Qiu
2015-07-08 0:57 ` Liu, Yong
2015-07-08 1:49 ` Qiu, Michael [this message]
2015-07-07 9:38 ` [dts] [PATCH 3/3] tests: Add RRC support with vlan suite Michael Qiu
2015-07-08 1:43 ` Liu, Yong
2015-07-08 1:54 ` Qiu, Michael
2015-07-08 8:51 ` [dts] [PATCH 0/3 v2] Add RRC support in test suites Michael Qiu
2015-07-08 8:51 ` [dts] [PATCH 1/3 v2] tests: Add RRC support with jumbo frame Michael Qiu
2015-07-08 8:51 ` [dts] [PATCH 2/3 v2] tests: Add RRC support in suite scatter Michael Qiu
2015-07-08 8:51 ` [dts] [PATCH 3/3 v2] tests: Add RRC support with vlan suite Michael Qiu
2015-07-09 2:26 ` [dts] [PATCH 0/3 v2] Add RRC support in test suites Liu, Yong
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=533710CFB86FA344BFBF2D6802E60286046B212C@SHSMSX101.ccr.corp.intel.com \
--to=michael.qiu@intel.com \
--cc=dts@dpdk.org \
--cc=yong.liu@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).