From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id E80005586 for ; Fri, 15 Jul 2016 17:25:59 +0200 (CEST) Received: by mail-wm0-f48.google.com with SMTP id f65so30274185wmi.0 for ; Fri, 15 Jul 2016 08:25:59 -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=Qu9Fw/vW1qthRGkcGKVWWWC8GA053ReC5OSmocWbFNo=; b=tTojX5zTpkVIHZjwBFsekSP2HasaZY/L1SMVwg31PF7gVc6TNUlNu9cK65wfauDyUv KlI9VXQV+kvIQd0tzprBMULeFKsJFq4JE4q4Oo0hDwsU6d2z+t5Sa2ztNPDfuhJael+v xZZt9VCOcp3BbFIdUGl/zulAtqjXjXpihe8dYOiq+cC0lrxF9aU00CYwR/j1+MjvGW/d vheTUkfersn93uWb9nyt11g+m4UHCbtGZNKNsochPAKJfWIdJolbOsVey9BBFhRyN0jq Dxo7pVyoK4ch/FWN63OWAUov8bpVCF5LHyd4whIVfrKfWyZ6+R/axw625ZhGS/Ooo4WH huBw== 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=Qu9Fw/vW1qthRGkcGKVWWWC8GA053ReC5OSmocWbFNo=; b=VClUUgDMlKZhCiTT+LNNAMK1bXjZpwsCVyWsAde3tWVM6Ilqk3N+BIisoTh7O8C9RU 3GCcazngHWUam5QvZ6yHIkJz5qFnCb7aDtsz8QxkxsX8aWeFyINiOLxjeUdRZo9k0Wwq pih3o8VLbL7HqDhaoBfRq4tzIlke9kTOuiI+wGYSvcbfxGFPSBDf3oo+rY+hF9XrI21V NXaKjYtWBZwHbX8ltuf31/LMRmkQEQORksHV01koegoiqbJ3GeiutXLaI6Kgm3vpaciv u6FRcvIU9cV46g18JcXcfSk3mwx/4GakpJ1XhhJSEKNYPKobtH3PvIDcJlQ2X9HhGefu t2+A== X-Gm-Message-State: ALyK8tJAgp5GcCXhAnehOfyOSuAlsvUIrMo55PP8ZIwCAHKrZDq22C1O/2qaDAs/d8fU8Ogp X-Received: by 10.194.107.161 with SMTP id hd1mr1291678wjb.90.1468596359780; Fri, 15 Jul 2016 08:25:59 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id i66sm2657554wmg.9.2016.07.15.08.25.59 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 15 Jul 2016 08:25:59 -0700 (PDT) From: Thomas Monjalon To: David Marchand Cc: dev@dpdk.org Date: Fri, 15 Jul 2016 17:25:58 +0200 Message-ID: <19330081.cX7rTgtcsF@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 15:26:00 -0000 > > 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 Series applied