[dts][PATCH V1] tests/kni:test ping add ip6 addr

Lingli Chen linglix.chen at intel.com
Wed Nov 24 16:43:38 CET 2021


When the test environment has no IPv6 address, add it manually.

Signed-off-by: Lingli Chen <linglix.chen at 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 85289d37..c2b05bad 100644
--- a/tests/TestSuite_kni.py
+++ b/tests/TestSuite_kni.py
@@ -611,6 +611,17 @@ class TestKni(TestCase):
             expected_str = "0 received, 100% packet loss"
             self.verify(all([expected_str in out, expected_str in out1]),
                         "ping not supported")
+            out = self.dut.send_expect(
+                "ip -family inet6 address show dev %s | awk '/inet6/ { print $2 }'| cut -d'/' -f1" % virtual_interface,
+                "# ", 10)
+            out1 = self.tester.send_expect(
+                "ip -family inet6 address show dev %s | awk '/inet6/ { print $2 }'| cut -d'/' -f1" % tx_interface,
+                "# ", 10)
+            if out.strip()=='':
+                self.dut.send_expect("ip -6 addr add fe80::742e:c5ef:bb9:b4c8/64 dev %s" % virtual_interface, "# ", 3)
+            if out1.strip()=='':
+                self.tester.send_expect("ip -6 addr add fe80::742e:c5ef:bb9:b4c9/64 dev %s" % tx_interface, "# ", 3)
+            time.sleep(3)
             out = self.dut.send_expect(
                 "ip -family inet6 address show dev %s | awk '/inet6/ { print $2 }'| cut -d'/' -f1" % virtual_interface, "# ", 10)
             ipv6_address = out.split('\r\n')[0]
-- 
2.33.1



More information about the dts mailing list