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 4AE0A2BA7 for ; Fri, 18 Nov 2016 04:06:50 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 17 Nov 2016 19:06:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,655,1473145200"; d="scan'208";a="1086898111" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 17 Nov 2016 19:06:48 -0800 From: "xu,huilong" To: dts@dpdk.org Cc: "xu,huilong" Date: Fri, 18 Nov 2016 11:08:01 +0800 Message-Id: <1479438482-4875-2-git-send-email-huilongx.xu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1479438482-4875-1-git-send-email-huilongx.xu@intel.com> References: <1479438482-4875-1-git-send-email-huilongx.xu@intel.com> Subject: [dts] [PATCH V1 2/3] update vxlan ipv4/ipv6 packet detect packet type info 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, 18 Nov 2016 03:06:50 -0000 Signed-off-by: xu,huilong --- tests/TestSuite_nvgre.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_nvgre.py b/tests/TestSuite_nvgre.py index c1df309..015aa9f 100644 --- a/tests/TestSuite_nvgre.py +++ b/tests/TestSuite_nvgre.py @@ -164,14 +164,14 @@ class NvgreTestConfig(object): """ if self.outer_ip_proto != 47: if self.outer_l3_type == 'IPv4': - return '(outer) L3 type: IPV4_EXT_UNKNOWN' + return 'L3_IPV4_EXT_UNKNOWN' else: - return '(outer) L3 type: IPV6_EXT_UNKNOWN' + return 'L3_IPV6_EXT_UNKNOWN' else: if self.inner_l3_type == 'IPv4': - return 'Inner L3 type: IPV4_EXT_UNKNOWN' + return 'L3_IPV4_EXT_UNKNOWN' else: - return 'Inner L3 type: IPV6_EXT_UNKNOWN' + return 'L3_IPV6_EXT_UNKNOWN' def create_pcap(self): """ -- 1.9.3