From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 3B33C2C5 for ; Tue, 31 Jul 2018 16:41:25 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B420921E49; Tue, 31 Jul 2018 10:41:24 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Tue, 31 Jul 2018 10:41:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=LpBqgAdzcpvajkPIsmRwUlj0gy Pe6JyCqrFzdL1zWDI=; b=Noawf5ExT7rUbsvFJ1xwu0ulTEo/SG2nmB932uoNcx UKhPqmyOiZPDB+N5Vy/6zEV6Up5jhtvlKSYI4YYfNnH0uXYS9dr3nU5B2oFgTv8N nOR1RmsHtZJ9TJVR7XYVp3E+RLtc59Z7s+M2X5+V/CGIHxqDOczrLcfmP7O0AKtP Y= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=LpBqgA dzcpvajkPIsmRwUlj0gyPe6JyCqrFzdL1zWDI=; b=HHDYCCCSMrCL6ZJ1T4I4Rk wkOzD+7jAOInU7YtCWXYDRd6xxuxJk7iynIMfQblKpNcWz3EtiM7gEMTY9ZTcZ/V ogXri9TLxuksczVmSx3hTn9UTxDQRg92SzDNMD9WZwLoYv/Ag4OxLyJSIX98z6FJ HuMqr/Y5Cteoo9HV+C6dozSF2ohzLadFB+OMWDRHtsBzv08eVhCpORd5lwBQqa8s Vviv4uuJVZmcBF5AzGdnDGG6T/vbLqWLUgYRGJbzHYlY/w+XNCJo6F89aRWire0U nFMOUcoV+EuGChCPtZWUEZn712bHtS1yrp+QUNy7ki3H81HqwmBNQL4Rebe2o+qw == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 0EC7010261; Tue, 31 Jul 2018 10:41:21 -0400 (EDT) From: Thomas Monjalon To: Reshma Pattan , anatoly.burakov@intel.com, jananeex.m.parthasarathy@intel.com Cc: dev@dpdk.org Date: Tue, 31 Jul 2018 16:41:16 +0200 Message-ID: <5476000.D8aPes4ZpC@xps> In-Reply-To: <1532684420-29500-1-git-send-email-reshma.pattan@intel.com> References: <1532684420-29500-1-git-send-email-reshma.pattan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v6 00/10] Make unit tests great again 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, 31 Jul 2018 14:41:25 -0000 27/07/2018 11:40, Reshma Pattan: > Previously, unit tests were running in groups. There were technical > reasons why that was the case (mostly having to do with limiting memory), > but it was hard to maintain and update the autotest script. > In 18.05, limiting of memory at DPDK startup was no longer necessary, > as DPDK allocates memory at runtime as needed. This has the implication > that the old test grouping can now be retired and replaced with a more > sensible way of running unit tests (using multiprocessing pool of workers > and a queue of tests). This patchset accomplishes exactly that. > > This patchset merges changes done in [1], [2] > > [1] http://dpdk.org/dev/patchwork/patch/40370/ > [2] http://patches.dpdk.org/patch/40373/ > > Removed unused and duplicate make rules for test-basic, > test-mempool, test-ring from make file system in patch 10/10. > > v5: Corrected the patch Authorship. > > > Anatoly Burakov (7): > autotest: fix printing > autotest: fix invalid code on reports > autotest: make autotest runner python 2/3 compliant > autotest: visually separate different test categories > autotest: improve filtering > autotest: remove autotest grouping > autotest: properly parallelize unit tests > > Jananee Parthasarathy (2): > autotest: update autotest test case list > mk: update make targets for classified testcases > > Reshma Pattan (1): > mk: remove unnecessary make rules of test Applied, thanks