From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id D8A914AC7 for ; Fri, 15 Jul 2016 16:30:37 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id f65so28370277wmi.0 for ; Fri, 15 Jul 2016 07:30:37 -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=8/712YnN48bG3RZ8eU3iggCtdodDuRugg5KfQdsG+8g=; b=pgJOY+xi5kXS1XrWdQih8uOmy8MjPZlhyCqfDkitrgvxGFTBlWVCSz+mc1uUllSerf rP2YoYGufsnc1Z50ch0/sjOUWeLdjSbGau5Hlpqtv5vZE4LpIi11swpgg6UXZ8U1hsg7 aStV6wnyWZp5ZVj8JFa1yUbUa1sFSC1SrBLCLBazU6pe5OmX+ID4oDegwbB+YIpPncCV zHXkPzZ1/rPtxheK5zRBjoMKFHKfGabDpAjTvbWoCog9TYQ7Az97u91SjhN9JdGQ/lUZ cGIcXWGAIYvv13vhvz7R7uu73LICvlCSn0u7BHe7YY/sVRFKxsseo+b8f2lzZj00CYjq JY4g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=8/712YnN48bG3RZ8eU3iggCtdodDuRugg5KfQdsG+8g=; b=R+LksesoTiL4xTY0O+pNH/nUBzIxQLx5JobEig4FEhkVg+TTbQsEfcPZBjS9kWMFxd yyt1UxkOrGvcazeGcAWlsj4MExacMwqXCXKDDdy42CRmgbmaqmncRHPbDzXtc+OW45c1 etM+uvVE1VXt5aN6zzqXDmPUmNicTXM6SIW1EGZTT1/EHmmfmz6CF7ZlkM/FIoztekSu 8U3qMXmuzUCk7Ou4bA58pci8kCNqs3icuhHOBZItoySGlh7jnMKH1JIJtZu0kr+OtDcS bEwTM8xBr2BuwnMoA9AVnbYPmq//ZWU28oe3M1wllnek/WxhlfYWTicWmshecPKqSjaA nYUQ== X-Gm-Message-State: ALyK8tIWGD4hcgJ2qLv9mKIbg/oaSHHudH7u89M3CR05cQ9SmL3PgfewWPLyheFgIS1li/4j X-Received: by 10.28.71.197 with SMTP id m66mr24425879wmi.26.1468593037625; Fri, 15 Jul 2016 07:30:37 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id 3sm6280309wms.1.2016.07.15.07.30.36 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 15 Jul 2016 07:30:36 -0700 (PDT) From: Thomas Monjalon To: David Marchand Cc: dev@dpdk.org Date: Fri, 15 Jul 2016 16:30:35 +0200 Message-ID: <3461958.LeeMAe6FG1@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: <1468445050-1081-1-git-send-email-thomas.monjalon@6wind.com> <1468445050-1081-2-git-send-email-thomas.monjalon@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 2/2] app/test: filter out unavailable tests X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2016 14:30:38 -0000 2016-07-15 16:23, David Marchand: > On Wed, Jul 13, 2016 at 11:24 PM, Thomas Monjalon > wrote: > > Some tests can fail to run because they are not compiled. > > It has been more visible recently when the PCI test became disabled > > in the default configuration because of dependency on libarchive: > > PCI autotest: Fail [Not found] > > > > The autotest script catch them and do not count them as an error anymore: > > PCI autotest: Skipped [Not Available] > > > > The commands dump_ring and dump_mempool are removed from the autotest list > > because they are some internal commands but not some registered tests. > > Thus they cannot be parsed as available test commands. > > > > Signed-off-by: Thomas Monjalon > > Suggested-by: David Marchand Thanks for giving me the idea of the nm trick. > and I trust you for the python ;-) You should not ;)