From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 8DA7F5A95 for ; Fri, 24 Jul 2015 09:03:29 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 24 Jul 2015 00:03:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,536,1432623600"; d="scan'208";a="753651158" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 24 Jul 2015 00:03:06 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id t6O734Ls009018; Fri, 24 Jul 2015 15:03:04 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t6O73289007293; Fri, 24 Jul 2015 15:03:04 +0800 Received: (from yliu84x@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id t6O732tD007289; Fri, 24 Jul 2015 15:03:02 +0800 From: Yong Liu To: dts@dpdk.org Date: Fri, 24 Jul 2015 15:03:01 +0800 Message-Id: <1437721381-7257-1-git-send-email-yong.liu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dts] [PATCH] fix bug that vxlan sample decap function check failure 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: Fri, 24 Jul 2015 07:03:30 -0000 From: Marvin Liu Signed-off-by: Marvin Liu diff --git a/tests/TestSuite_vxlan_sample.py b/tests/TestSuite_vxlan_sample.py index 4ede98e..17ebefe 100644 --- a/tests/TestSuite_vxlan_sample.py +++ b/tests/TestSuite_vxlan_sample.py @@ -291,7 +291,7 @@ class TestVxlanSample(TestCase): 'iface="%s", count=%d, timeout=5)' % (itf, count)) if pkt_dmac != "": self.tester.scapy_append( - 'p = sniff(filter="ether dst %s",' % pkt_smac + + 'p = sniff(filter="ether dst %s",' % pkt_dmac + 'iface="%s", count=%d, timeout=5)' % (itf, count)) self.tester.scapy_append( 'wrpcap(\"%s\", p)' % self.capture_file) -- 1.9.3