From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A6199A32A1 for ; Thu, 24 Oct 2019 09:55:26 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 40F471D445; Thu, 24 Oct 2019 09:55:04 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id 9E51B1D412 for ; Thu, 24 Oct 2019 09:55:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1571903702; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pJuT3EpWf/ZyQkMvEhI/lYHzVCU4nYm8GuV6KlBIIXY=; b=LKuGuk0kSkTAt+1td3W/gw/pO9P/263dLRvANxa6hgCH4il8zpjpOjPE03Jm95lVIRFcjH 5DhnRhzKJoLKxXfLjYwPOYMrRegrzrlnkDRYkjjFvZ/wovKUd8/XVakQemE9zv0wnWLt+o svtbKW6pABVOti7uFl9QEs1ZooMMcNo= Received: from mail-ua1-f69.google.com (mail-ua1-f69.google.com [209.85.222.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-44-oajnH3G6MViI5tu_ITw2Lw-1; Thu, 24 Oct 2019 03:55:00 -0400 Received: by mail-ua1-f69.google.com with SMTP id b12so2824754uan.10 for ; Thu, 24 Oct 2019 00:55:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=pJuT3EpWf/ZyQkMvEhI/lYHzVCU4nYm8GuV6KlBIIXY=; b=lvd9XVyr2uMYpA4H74V5/Q0BVjAwuRrqlrTjuobJyVOFnMZmEz0HxJr7pgBnnfRtRV TMfgk97o89wErtpJ/UmbOChPfv45ByPYW8sswsvI4hWGQRBbfxGZRFJLh4a9k8MPNq/t TGCT8pYja7rdO+FH/+Ur+ozpwihXY7ufnumoZ7zjMfGiEr4a9r3j9ywXIeeGg30gu5uF byVFC2fGxfKqbdpOqTJXZFiILyllSrS7US56+lNsK22FrV76hPexibzzUprLSR5T9Vs8 huLqY2Z+KTDEZ0SeZwWQwI5Bg56k3OQW079Dc0jAfclsAMj60DQKyxHp9SUqp7k2sGwl TpiQ== X-Gm-Message-State: APjAAAVbaYGHaQ2QRoz4KXOZ/D2IbXfp68CYkVly4jQhJSKEZXqhEgXU 5jaPu4oHtiostJwxM4QzqMS90ubquaPcgztC9oHH3KApIZwW6tw4In3k4OR4qk0XFF8NtyEh3gq aoCIillOU5korfkDVgHM= X-Received: by 2002:a05:6102:387:: with SMTP id m7mr8365367vsq.105.1571903700356; Thu, 24 Oct 2019 00:55:00 -0700 (PDT) X-Google-Smtp-Source: APXvYqwPi4qdJxGhU0eCtKkXx/klzU5/bvO84q9CcM9OJYJgKsEBhCqLI1uNiIA7W8jFdkW8KRcBopaTu5+YEaWCnso= X-Received: by 2002:a05:6102:387:: with SMTP id m7mr8365352vsq.105.1571903700107; Thu, 24 Oct 2019 00:55:00 -0700 (PDT) MIME-Version: 1.0 References: <1565271260-10295-2-git-send-email-lavanyax.govindarajan@intel.com> <1567174395-27432-1-git-send-email-lavanyax.govindarajan@intel.com> In-Reply-To: <1567174395-27432-1-git-send-email-lavanyax.govindarajan@intel.com> From: David Marchand Date: Thu, 24 Oct 2019 09:54:49 +0200 Message-ID: To: Lavanya Govindarajan Cc: dev , "Pattan, Reshma" , Olivier Matz , Bruce Richardson , "Parthasarathy, JananeeX M" , Pallantla Poornima X-MC-Unique: oajnH3G6MViI5tu_ITw2Lw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v5 0/2] add unit test cases for mbuf library 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Aug 30, 2019 at 4:14 PM Lavanya Govindarajan wrote: > > This patchset contains unit testcases added to increase the > functional and decision coverage for the library functions > defined in rte_mbuf.h and rte_mbuf.c > > 1/2: unit test cases added for rte_mbuf.h > 2/2: unit test cases added for rte_mbuf.c > > Patch 2/2 depends on 1/2 > > Signed-off-by: Lavanya Govindarajan > Signed-off-by: Pallantla Poornima > Reviewed-by: Reshma Pattan > Acked-by: Olivier Matz Applied, thanks. -- David Marchand