From: Dong shijie <shijiex.dong@intel.com>
To: dts@dpdk.org
Subject: [dts] [PATCH] fix vxlan invalid receive queue bug
Date: Wed, 11 Nov 2015 10:03:58 +0800 [thread overview]
Message-ID: <1447207438-14842-1-git-send-email-shijiex.dong@intel.com> (raw)
Signed-off-by: Dong shijie <shijiex.dong@intel.com>
---
tests/TestSuite_vxlan.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/TestSuite_vxlan.py b/tests/TestSuite_vxlan.py
index 91da7ca..5c994c8 100644
--- a/tests/TestSuite_vxlan.py
+++ b/tests/TestSuite_vxlan.py
@@ -599,10 +599,10 @@ class TestVxlan(TestCase, IxiaPacketGenerator):
out = self.dut.send_expect("start", "testpmd>", 10)
queue = -1
- pattern = re.compile("VNI = (\d) - Receive queue=0x(\d)")
+ pattern = re.compile("- Receive queue=0x(\d)")
m = pattern.search(out)
if m is not None:
- queue = m.group(2)
+ queue = m.group(1)
# verify received in expected queue
self.verify(queue_id == int(queue), "invalid receive queue")
--
1.8.1.4
next reply other threads:[~2015-11-11 2:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-11 2:03 Dong shijie [this message]
2015-11-11 2:18 ` 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=1447207438-14842-1-git-send-email-shijiex.dong@intel.com \
--to=shijiex.dong@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).