test suite reviews and discussions
 help / color / mirror / Atom feed
From: "xu,huilong" <huilongx.xu@intel.com>
To: dts@dpdk.org
Cc: "xu,huilong" <huilongx.xu@intel.com>
Subject: [dts] [PATCH V2] fix ping6 and stress test case
Date: Wed, 14 Dec 2016 17:07:25 +0800	[thread overview]
Message-ID: <1481706445-2798-1-git-send-email-huilongx.xu@intel.com> (raw)

Signed-off-by: xu,huilong <huilongx.xu@intel.com>
---
 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

             reply	other threads:[~2016-12-14  9:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-14  9:07 xu,huilong [this message]
2016-12-14 15:15 ` 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=1481706445-2798-1-git-send-email-huilongx.xu@intel.com \
    --to=huilongx.xu@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).