From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 57C165A69 for ; Sat, 20 Aug 2016 15:24:10 +0200 (CEST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga103.jf.intel.com with ESMTP; 20 Aug 2016 06:24:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,549,1464678000"; d="scan'208";a="57279" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga004.jf.intel.com with ESMTP; 20 Aug 2016 06:24:08 -0700 Received: from rr.iil.intel.com (rr.iil.intel.com [143.185.141.149]) by imail001.iil.intel.com with ESMTP id u7KDO5jX006564; Sat, 20 Aug 2016 16:24:05 +0300 From: Rami Rosen To: dts@dpdk.org Cc: yufengx.mo@intel.com, Rami Rosen Date: Sat, 20 Aug 2016 16:26:50 +0300 Message-Id: <1471699610-12048-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dts] [PATCH] tests: fix initialization in initialize_port_config() of IPGRE test suite. 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: Sat, 20 Aug 2016 13:24:10 -0000 This patch removes the initialization of self.outer_mac_src to "11:22:33:44:55:66" in initialize_port_config(() as this initialization is wrong and meaningless (self.outer_mac_src is being initialized to '00:00:10:00:00:00' immediately in the command after). Signed-off-by: Rami Rosen --- tests/TestSuite_ipgre.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/TestSuite_ipgre.py b/tests/TestSuite_ipgre.py index a403ded..0868ffc 100644 --- a/tests/TestSuite_ipgre.py +++ b/tests/TestSuite_ipgre.py @@ -77,7 +77,6 @@ class TestIpgre(TestCase): self.re_bind_nvgre_to_gre() def initialize_port_config(self): - self.outer_mac_src = "11:22:33:44:55:66" self.outer_mac_src = '00:00:10:00:00:00' self.outer_mac_dst = '11:22:33:44:55:66' self.outer_ip_src = '192.168.1.1' -- 2.5.5