From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f182.google.com (mail-wr0-f182.google.com [209.85.128.182]) by dpdk.org (Postfix) with ESMTP id BFC7E1DB1 for ; Thu, 6 Apr 2017 21:45:16 +0200 (CEST) Received: by mail-wr0-f182.google.com with SMTP id t20so78258475wra.1 for ; Thu, 06 Apr 2017 12:45:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=MSJNzjakBfRfKx0ncPYQXyvV9ikrYXiqv3Z49GxfbXA=; b=S1DoKLbFlMBjCbfIUMUnYsoOrNPzzW+RZa9PWIIhHgVNIJHmuFeDOVU9bnH+CKvhdf lDa2aBiT5LlHPRZYc8s53JMviru4yd3Du6KQWjDFlvkX5lYugyWsEvoddVZ5QwLb3f3V lbIBArxPSHkJ2XI2uqoCQXe84XONAW++NzyiIf5DxcFdeIikzVcSyYungI7d3fCe14Pm WoaglEMkMW5J7aL7fR4ZqhG2dNDNzg4c2fOrbUWLasblu/Yc0GFD2BTCfKmxQ5y7a0AE B1FpXwDmvsyS2TlL8pnzG+x29NXBqkUhBXUa34a9VktJkcdsA8hUoSZp6R2QRVhPLYp0 V0Hg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=MSJNzjakBfRfKx0ncPYQXyvV9ikrYXiqv3Z49GxfbXA=; b=EK6P5bLtI90HDGzbW7CxNkJOSd6JCWcaS+XAYruezey3mmhIde9PrdPntC/DhIwevj YLAC/yV1wnStsuvempKhgzAdZOR4gor/9AfNFqYXmv2CTHPbLBLVd1a+iud84KpRpC/q uJz1pRtxjCCBFpt4bS2pbGedJzGpvDuOGKDww83VN3OgjcVpA6keBwyZYyRAoyiF5iPJ GYumC5GPTTTNUL8bR+PQ7Gfqqe9FzA+brD1tROI4aXxEhSucF7hY9DO1roRcNRvIU4UT t4mMM7QqyqBsfKqGBrk/9IvwzkuYbo9k2nVWnF2qdBJlkdWrG0cgeApGzPOXNdHmoFjx RhcQ== X-Gm-Message-State: AFeK/H3P5CRM86BGTx9WVxG41zd7qTXuoZLRwP0HxIqRO2qkjlV08Mx5CMDl0kC8VJsBbaYs X-Received: by 10.28.46.213 with SMTP id u204mr25004821wmu.136.1491507916215; Thu, 06 Apr 2017 12:45:16 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id i133sm27524934wmg.26.2017.04.06.12.45.14 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Apr 2017 12:45:15 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson Cc: pablo.de.lara.guarch@intel.com, dev@dpdk.org Date: Thu, 06 Apr 2017 21:45:14 +0200 Message-ID: <2478653.9mtuBhKHMk@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20170329163856.10932-1-bruce.richardson@intel.com> References: <20170329140419.27149-1-bruce.richardson@intel.com> <20170329163856.10932-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 0/4] improve build coverage 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, 06 Apr 2017 19:45:17 -0000 2017-03-29 17:38, Bruce Richardson: > This patch aims to increase the amount of code coverage we get when > doing a basic build of DPDK using the build tools and scripts. It does this > by enabling in our makefiles and default build configuration extra drivers > and examples which don't have extra external requirements. It then adjusts > the testbuild script to ensure it covers the test binary which was recently > removed from the default build. > > V2: corrected test-build additions for the autotest binary, since > test-build skips testpmd and the other apps. Therefore we need to run two > build commands to build everything. > > Bruce Richardson (4): > examples: enable performance-thread in examples build > config: enable crypto scheduler PMD by default > devtools: remove special case build for perf thread example > devtools: add autotest app to build script Applied with suggested modifications, thanks