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 B452C2BA7 for ; Fri, 18 Nov 2016 04:06:49 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 17 Nov 2016 19:06:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,655,1473145200"; d="scan'208";a="1086898107" 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:47 -0800 From: "xu,huilong" To: dts@dpdk.org Cc: "xu,huilong" Date: Fri, 18 Nov 2016 11:08:00 +0800 Message-Id: <1479438482-4875-1-git-send-email-huilongx.xu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1 1/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_vxlan.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_vxlan.py b/tests/TestSuite_vxlan.py index b810c13..5fef9d9 100644 --- a/tests/TestSuite_vxlan.py +++ b/tests/TestSuite_vxlan.py @@ -90,14 +90,14 @@ class VxlanTestConfig(object): """ if self.outer_udp_dst != VXLAN_PORT: if self.outer_ip6_src != 'N/A': - return '(outer) L3 type: IPV6_EXT_UNKNOWN' + return 'L3_IPV6_EXT_UNKNOWN' else: - return '(outer) L3 type: IPV4_EXT_UNKNOWN' + return 'L3_IPV4_EXT_UNKNOWN' else: if self.inner_ip6_src != 'N/A': - return 'Inner L3 type: IPV6_EXT_UNKNOWN' + return 'L3_IPV6_EXT_UNKNOWN' else: - return 'Inner L3 type: IPV4_EXT_UNKNOWN' + return 'L3_IPV4_EXT_UNKNOWN' def create_pcap(self): """ -- 1.9.3