From: "Liu, Yong" <yong.liu@intel.com>
To: "xu,huilong" <huilongx.xu@intel.com>, dts@dpdk.org
Subject: Re: [dts] [patch V1] fix ifconfig and ping test case in kni test suite
Date: Wed, 11 Jan 2017 15:58:16 +0800 [thread overview]
Message-ID: <5875E598.2030602@intel.com> (raw)
In-Reply-To: <1483949395-34032-1-git-send-email-huilongx.xu@intel.com>
Thanks, applied.
On 01/09/2017 04:09 PM, xu,huilong wrote:
> chang list:
> 1. set virtual interface down, before test ifconfig up function, because sometime the virtual interface stats is up, when creat it.
> 2. remove ipv6 address check, when virtual interface create. because different os, ipv6 default not enable. should add ipv6 address by slef.
> 3. remove ping virtual interface by self. some os not support this test, eg RHEL.
>
> Signed-off-by: xu,huilong <huilongx.xu@intel.com>
> ---
> tests/TestSuite_kni.py | 16 ++++------------
> 1 file changed, 4 insertions(+), 12 deletions(-)
>
> diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py
> index 00f1e25..0825903 100644
> --- a/tests/TestSuite_kni.py
> +++ b/tests/TestSuite_kni.py
> @@ -469,17 +469,14 @@ class TestKni(TestCase):
> for port in self.config['ports']:
> virtual_interface = self.virtual_interface_name(port)
>
> - # Set up
> + # some time, the virtual interface stats is up when it create
> + # so should set down before set up.
> + self.dut.send_expect(
> + "ifconfig %s down" % virtual_interface, "# ")
> out = self.dut.send_expect(
> "ifconfig %s up" % virtual_interface, "# ")
> self.verify("Configure network interface of %d up" %
> port in out, "ifconfig up not supported")
> -
> - out = self.dut.send_expect(
> - "ip -family inet6 address show dev %s" % virtual_interface, "# ")
> - self.verify(
> - "inet6 " in out, "ifconfig up the port_virtual_interaces not support")
> -
> # Add an IPv6 address
> out = self.dut.send_expect(
> "ifconfig %s add fe80::%d" % (virtual_interface, port + 1), "# ")
> @@ -549,11 +546,6 @@ class TestKni(TestCase):
> virtual_interface = self.virtual_interface_name(port)
>
> out = self.dut.send_expect(
> - "ping -w 2 -I %s 192.168.%d.1" % (virtual_interface, port), "# ", 10)
> - self.verify("64 bytes from 192.168.%d.1:" %
> - port in out, "ping not supported")
> -
> - out = self.dut.send_expect(
> "ping -w 2 -I %s 192.168.%d.2" % (virtual_interface, port), "# ", 10)
> self.verify("64 bytes from 192.168.%d.2:" %
> port in out, "ping not supported")
prev parent reply other threads:[~2017-01-11 8:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-09 8:09 xu,huilong
2017-01-11 7:58 ` Liu, Yong [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=5875E598.2030602@intel.com \
--to=yong.liu@intel.com \
--cc=dts@dpdk.org \
--cc=huilongx.xu@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).