From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 47D5636E for ; Wed, 14 Dec 2016 10:06:35 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP; 14 Dec 2016 01:06:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,346,1477983600"; d="scan'208";a="1081641115" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 14 Dec 2016 01:06:15 -0800 From: "xu,huilong" To: dts@dpdk.org Cc: "xu,huilong" Date: Wed, 14 Dec 2016 17:07:25 +0800 Message-Id: <1481706445-2798-1-git-send-email-huilongx.xu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V2] fix ping6 and stress test case X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Dec 2016 09:06:36 -0000 Signed-off-by: xu,huilong --- tests/TestSuite_kni.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py index 18bd768..3836c57 100644 --- a/tests/TestSuite_kni.py +++ b/tests/TestSuite_kni.py @@ -574,12 +574,14 @@ class TestKni(TestCase): out = self.dut.send_expect("ping6 -w 1 -I %s %s" % (virtual_interface, str(ipv6_address)), "# ", 10) - self.verify("64 bytes from %s: icmp_seq=1 ttl=64" % + # FC25 ping6 output info is "64 bytes from ipv6_address%v: icmp_seq=1 ttl=64" + # other os ping6 output is "64 bytes from ipv6_address: icmp_seq=1 ttl=64" + self.verify("64 bytes from %s" % ipv6_address in out, "ping6 not supported") out = self.tester.send_expect( "ping6 -w 1 -I %s %s" % (tx_interface, str(ipv6_address)), "# ", 10) - self.verify("64 bytes from %s: icmp_seq=1 ttl=64" % + self.verify("64 bytes from %s" % ipv6_address in out, "kni cannot reply ping6 packet") ipv6list = list(ipv6_address) @@ -806,14 +808,14 @@ class TestKni(TestCase): try: out = self.start_kni(step['lo_mode'], step['kthread_mode']) self.verify("Error" not in out, "Error found during kni start") + # kni setup out info by kernel debug function. so should re-build kenel. + # now not check kni setup out info, only check kni setup ok and setup no error output + out = self.dut.send_expect('ps -aux', "]# ") + self.verify("kni" not in out, "kni process setup failed") except: # some permutations have to fail pass - out = self.dut.send_expect('dmesg -c | grep "KNI"', "]# ") - self.verify(len(re.findall(expectedMessage, out, re.DOTALL)) > 0, - "Module not properly loaded") - def test_perf_loopback(self): """ KNI loopback performance -- 1.9.3