From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id D7AD92C16 for ; Tue, 25 Jul 2017 11:46:16 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga104.jf.intel.com with ESMTP; 25 Jul 2017 02:46:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,411,1496127600"; d="scan'208";a="131570037" Received: from dwdohert-mobl1.ger.corp.intel.com (HELO [163.33.228.141]) ([163.33.228.141]) by fmsmga006.fm.intel.com with ESMTP; 25 Jul 2017 02:46:14 -0700 To: Herbert Guan , dev@dpdk.org, jianbo.liu@linaro.org References: <1499932836-25309-1-git-send-email-herbert.guan@arm.com> From: Declan Doherty Message-ID: <695a2442-0cc1-881d-6ea4-c3c4a58714ca@intel.com> Date: Tue, 25 Jul 2017 10:46:14 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <1499932836-25309-1-git-send-email-herbert.guan@arm.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] test: fix the parameter issue of test case X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2017 09:46:17 -0000 On 13/07/2017 9:00 AM, Herbert Guan wrote: > When test case "test_balance_l23_tx_burst_ipv4_toggle_ip_addr" is > calling balance_l23_tx_burst(), the ip_addr instead of mac_addr > should be toggled according to the test name. > > Signed-off-by: Herbert Guan > --- > test/test/test_link_bonding.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/test/test/test_link_bonding.c b/test/test/test_link_bonding.c > index aa2a1a2..12dd91d 100644 > --- a/test/test/test_link_bonding.c > +++ b/test/test/test_link_bonding.c > @@ -2789,7 +2789,7 @@ struct rte_fdir_conf fdir_conf = { > static int > test_balance_l23_tx_burst_ipv4_toggle_ip_addr(void) > { > - return balance_l23_tx_burst(0, 1, 1, 0); > + return balance_l23_tx_burst(0, 1, 0, 1); > } > > static int > Acked-by: Declan Doherty