From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yw0-f176.google.com (mail-yw0-f176.google.com [209.85.161.176]) by dpdk.org (Postfix) with ESMTP id A584B29CB for ; Thu, 13 Jul 2017 10:48:33 +0200 (CEST) Received: by mail-yw0-f176.google.com with SMTP id a12so19755666ywh.3 for ; Thu, 13 Jul 2017 01:48:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=1ApY6d6qhb4iu/Pk9zhsxjWbx2XJUcuJ7oqGGf1byCw=; b=PH+YOxobfWACdr8ja3C+wECr4hBL9eqYwCleb1lVDVSqqV5sV6tS7VbkqeVmvotlBr XQJvliDHyegKyF31KsIitMfY7K5hmP6Aye8cqzXnMi634JHpEl+5ae8Ul5iQ00JkLSYA zzzCBY7f0yiQ3GqX56Yh2RHlHePmbnfzEWyGk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=1ApY6d6qhb4iu/Pk9zhsxjWbx2XJUcuJ7oqGGf1byCw=; b=gyA69uhf4VkjK0B+LhRmQamc6h6eUksbtyfad8KD2r7MthZH4rkqt0IuZyyscT56Kf xDi8CzhkSkO54vL1Blax7bPEfw/hwtfg5uPHqmCyqRKpPBDoSe5rVYTJWPbV93rAql97 XRxB9DgccVCUJQDrDVSU2Ms4dKLcyIbwZhZitZYX+G3JGqq8JXYJljwYEZvHdlAhwzfq FBItDwzGbK9S+y0HTkhGaN3zUqF7KwUp6g7E31L9+Kaz8uI6KrpzFj03mxN2xvo46mmB qvIQrgFXSz2UXzoqEWBrRb/0Y5Z2IhFL7G9TDx5RS2QemFwyo0CHNmGMT1Ip/s9ghlm9 ZOsg== X-Gm-Message-State: AIVw112tbVKPbdy3MuVIkFQVHWywWi8WZ6In4+xPnTEyiEfPPIHa8FiC G5gFXvk+Tui+OgxsVwVWfY8bcZ+TK3g5 X-Received: by 10.129.53.199 with SMTP id c190mr1046109ywa.326.1499935712825; Thu, 13 Jul 2017 01:48:32 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.171.73 with HTTP; Thu, 13 Jul 2017 01:48:32 -0700 (PDT) In-Reply-To: <1499932836-25309-1-git-send-email-herbert.guan@arm.com> References: <1499932836-25309-1-git-send-email-herbert.guan@arm.com> From: Jianbo Liu Date: Thu, 13 Jul 2017 16:48:32 +0800 Message-ID: To: Herbert Guan Cc: dev@dpdk.org, Declan Doherty Content-Type: text/plain; charset="UTF-8" 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: Thu, 13 Jul 2017 08:48:34 -0000 On 13 July 2017 at 16:00, 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 > -- > 1.8.3.1 > Acked-by: Jianbo Liu