From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id 72DC058D4 for ; Thu, 21 Jul 2016 23:59:48 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id i5so41836145wmg.0 for ; Thu, 21 Jul 2016 14:59:48 -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=wzJNiCg/uGr+P+XLzPtLPkr4tCnrxgsa8WLnyd+7S28=; b=IssyMsIU1LnHxN0BL/VhKZ9rxHLKBmdBtc5O+GwZP+AaVhyN5GJZgm2ZQPfSwXkwnP yioYu37dEdpgoJXAdqYkEIc5VaSeTbTVyaZDvfCCKRNQzAZLkUzar70IRIxR3zTNj16d G98PGv6BGzhNgsIEKh75FoiFKp/vOTL1D8pgityuC994eOk4jdCAPUx3TeEU/a4yyu5+ WnC8uFA58etW8DVCp+0Ytl1iZm2/xm0A0voelwEDC6+GwSPbjU/GUdPEHzBpZnPp4mKY 2VMzeBx/KETRt69MeA0IDyfR3nBVivocCZAJYR3CJQFbeZAVYOUZnUk3TJLf8Q6Tm7Ut LLVg== 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=wzJNiCg/uGr+P+XLzPtLPkr4tCnrxgsa8WLnyd+7S28=; b=dVm7Dg+wu5Y8UtkeYK/9kqrvl1kaQQ0IxVRFHquEonfTSqxLdXWqdhHHbYbLRumd0i Occ/1ES0Dp0k1k5DheoHDMHiiNjJbJExfGFuczWmS1HqxPnWrIuk5XVwbLa1/plapQ9+ hBRsrwIwxb3NNyLOH0u1kz5ZZv9jU+68nUuV+0BnoWwhM1pg8zZM2wZWG7Hhi+8ElAiR mHIGDFT/eVATr11n4tP3pZIguW6lZxxwyxWKZn4G3s8xuUFPm7rzgOnqlYq0bUNDKfWc xaLiRj3QeCN3J+ZWATjwu3esiG/+Kv8du3w7/M0zrvTVwcjshjFT9A9ajp90i0BjmKU6 BQMg== X-Gm-Message-State: ALyK8tKcgKI2OsOaAz4l39oJUhdVuIFKtnRGgTZUzIJuK0TWfY+3aIx3/ONbDuEAfV6tubPc X-Received: by 10.28.63.8 with SMTP id m8mr21853691wma.88.1469138388281; Thu, 21 Jul 2016 14:59:48 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id 207sm7547858wmb.7.2016.07.21.14.59.47 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 21 Jul 2016 14:59:47 -0700 (PDT) From: Thomas Monjalon To: Olivier Matz Cc: dev@dpdk.org Date: Thu, 21 Jul 2016 23:59:46 +0200 Message-ID: <2314153.f24oskABN1@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <3383de3c-da76-ae86-8623-c207bb1d6d1d@6wind.com> References: <1468947230-22874-1-git-send-email-thomas.monjalon@6wind.com> <3383de3c-da76-ae86-8623-c207bb1d6d1d@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] app/test: disable filtering with stripped binary 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: Thu, 21 Jul 2016 21:59:48 -0000 2016-07-21 11:07, Olivier Matz: > On 07/19/2016 06:53 PM, Thomas Monjalon wrote: > > The unavailable tests are filtered out by autotest by looking for > > the symbols in the binary: > > > > PCI autotest: Skipped [Not Available] [00m 00s] > > Malloc autotest: Success [00m 00s] > > > > It results to skip everything if the binary has no symbol (stripped): > > > > PCI autotest: Skipped [Not Available] [00m 00s] > > Malloc autotest: Skipped [Not Available] [00m 00s] > > > > This case is handled by getting back to the old behaviour if the binary > > has no symbol information: > > > > PCI autotest: Fail [Not found] [00m 00s] > > Malloc autotest: Success [00m 00s] > > > > Fixes: d553c8f2b1a2 ("app/test: filter out unavailable tests") > > > > Signed-off-by: Thomas Monjalon > > Tested-by: Olivier Matz Applied