From: Lijuan Tu <lijuanx.a.tu@intel.com>
To: dts@dpdk.org
Subject: [dts] [PATCH]testSuite kni:enable ipv6 before test
Date: Tue, 8 Dec 2015 13:57:52 +0800 [thread overview]
Message-ID: <1449554272-51511-1-git-send-email-lijuanx.a.tu@intel.com> (raw)
our test related ipv6 ,so we should enable it.
Signed-off-by: Lijuan Tu <lijuanx.a.tu@intel.com>
---
tests/TestSuite_kni.py | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py
index 69a20fe..d6766a8 100644
--- a/tests/TestSuite_kni.py
+++ b/tests/TestSuite_kni.py
@@ -469,6 +469,8 @@ class TestKni(TestCase):
for port in self.config['ports']:
virtual_interface = self.virtual_interface_name(port)
+ # enable ipv6
+ self.dut.enable_ipv6(virtual_interface)
# Set up
out = self.dut.send_expect(
"ifconfig %s up" % virtual_interface, "# ")
@@ -517,6 +519,9 @@ class TestKni(TestCase):
"ip -family inet6 address show dev %s" % virtual_interface, "# ")
self.verify("inet6 addr" not in out, "ifconfig down not supported")
+ # restore ipv6 setting
+ self.dut.disable_ipv6(virtual_interface)
+
def test_ping(self):
"""
Ping support KNI.
@@ -543,6 +548,9 @@ class TestKni(TestCase):
# Send ping requests and check for answers
for port in self.config['ports']:
+ # enable ipv6
+ self.dut.enable_ipv6(virtual_interface)
+
tx_port = self.tester.get_local_port(port)
tx_interface = self.tester.get_interface(tx_port)
@@ -597,6 +605,9 @@ class TestKni(TestCase):
# remove ip from tester
self.tester.send_expect(
"ip addr del 192.168.%d.2 dev %s" % (port, tx_interface), "# ")
+
+ # restore ipv6 setting
+ self.dut.disable_ipv6(virtual_interface)
for port in self.config['ports']:
tx_port = self.tester.get_local_port(port)
--
1.8.4.2
next reply other threads:[~2015-12-08 6:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-08 5:57 Lijuan Tu [this message]
2015-12-10 2:06 ` 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=1449554272-51511-1-git-send-email-lijuanx.a.tu@intel.com \
--to=lijuanx.a.tu@intel.com \
--cc=dts@dpdk.org \
/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).