From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5C4D0A0094 for ; Sun, 27 Oct 2019 09:48:01 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 27C031BF40; Sun, 27 Oct 2019 09:48:01 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 90E381BF22 for ; Sun, 27 Oct 2019 09:47:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1572166078; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Idp0iv8OWv058jasZVPrsqZ/4uMpYHVd513eSe2HxjE=; b=BAd1aAM3pphPDX9LzQMzoQugs3SLTbtce0CSVMnYpmofJSDH9phVA4sNrUWxT/36VJRZ11 fK1fXjeTLm0+Xq853BuH32qlfyNNCz42dXhHyydqEGtpBBcgsBaVWtAi3WrnUY4Ubr8edF ZZTY1HDxQ7wl3nZHEjQkS8xnk1gTzHE= Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-334-CYqMMRhFNRiVV09ynU1Rkg-1; Sun, 27 Oct 2019 04:47:54 -0400 Received: by mail-vk1-f197.google.com with SMTP id v71so3309742vkd.16 for ; Sun, 27 Oct 2019 01:47:54 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=RtOH3lRxpuU7IRHrY0D8xtMhiKITlOLmvyOA88fwJoQ=; b=EpBvv+QGRHocaYhZIWM+AC4EuV08Y9YDyqWSPu+hjIStcSi0ny/doXLvPqYHH0rWfY UmoilqOjQpuydtfhgo0/DGe5VvdE4Tf9m2gtxr4dSJVuGwq65VxklMXqI9Cd4lYuTF2v PsZIvkcYm0WdlXNGcYmEdJ6dFhLyk/AFrSnMhQHuDC42f5mhw8JOUfwLvodStw0L6Tus JMtTbo4EaLDbSuJHpdS+DOE6J2r3WfY1Hkc/r3r+MrMqFUR/Qp7blDu3GddGNfa6Dpqv hOMMjuVFddKymO46yOS2NSxwlQlLO02a3P1Fu4lQutbxkPouQIZ8toe97Ad+JrhrsZe1 CLGw== X-Gm-Message-State: APjAAAW6qttaNiupeQROl2C/MaxvoXgpRllthmzHPdHqfeCtZcJ1BoPi hxyxKCa6Zg1sgpQNMvDP24G1xgZ72xFCqyJSnI19NwGf5Lar4Oa2PYFvoWsIOYTRIfvguEK6Axw ZSOK2jyb12aZpEr2WAyJT7i8= X-Received: by 2002:a05:6102:d8:: with SMTP id u24mr2274671vsp.180.1572166073930; Sun, 27 Oct 2019 01:47:53 -0700 (PDT) X-Google-Smtp-Source: APXvYqwE09aQ5uBb96RvUpgfsp/P8Zes/iNXe2OkW1yVQ+9KlPvsE834FbqjsnXeQUTwkasvfscSL0EIOLU0cFva/UM= X-Received: by 2002:a05:6102:d8:: with SMTP id u24mr2274662vsp.180.1572166073618; Sun, 27 Oct 2019 01:47:53 -0700 (PDT) MIME-Version: 1.0 References: <20191017111628.5396-1-reshma.pattan@intel.com> <20191025153808.31753-1-reshma.pattan@intel.com> In-Reply-To: <20191025153808.31753-1-reshma.pattan@intel.com> From: David Marchand Date: Sun, 27 Oct 2019 09:47:42 +0100 Message-ID: To: Reshma Pattan Cc: dev , dpdk stable , Nikhil Rao , Chas Williams , Bruce Richardson , Stephen Hemminger X-MC-Unique: CYqMMRhFNRiVV09ynU1Rkg-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-stable] [PATCH v3] app/test: fix build when ring PMD is disabled X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Fri, Oct 25, 2019 at 5:38 PM Reshma Pattan wro= te: > > 1)pdump, latency, bitrate, ring PMD and test_event_eth_tx_adapter > unit tests are dependent on ring PMD, so compile those > tests only when ring PMD is enabled else ignore. > > 2)get rid of make file error which was added by bond unit test > for ring PMD disabled case which is not necessary. > > Fixes: 086eb64db3 ("test/pdump: add unit test for pdump library") > Fixes: fdeb30fa71 ("test/bitrate: add unit tests for bitrate library") > Fixes: 1e3676a06e ("test/latency: add unit tests for latencystats library= ") > Fixes: 46cf97e4bb ("eventdev: add test for eth Tx adapter") > Fixes: d23e09e0ef ("app/test: link with ring pmd when needed") > > CC: stable@dpdk.org > CC: Nikhil Rao > CC: Chas Williams > CC: Bruce Richardson > CC: Stephen Hemminger > > Reported-by: Stephen Hemminger > Signed-off-by: Reshma Pattan > --- > v3: add missing test event_eth_tx_adapter_autotest. https://travis-ci.com/ovsrobot/dpdk/jobs/249598391 79/83 DPDK:fast-tests / event_eth_tx_adapter_autotest FAIL 0.12 s (exit status 255 or signal 127 SIGinvalid) --- command --- DPDK_TEST=3D'event_eth_tx_adapter_autotest' /home/travis/build/ovsrobot/dpdk/build/app/test/dpdk-test -l 0-1 --file-prefix=3Devent_eth_tx_adapter_autotest --- stdout --- EAL: Probing VFIO support... APP: HPET is not enabled, using TSC as default timer RTE>>event_eth_tx_adapter_autotest + ------------------------------------------------------- + + Test Suite : tx event eth adapter test suite Port 0 MAC: 00 00 00 00 00 00 Port 1 MAC: 00 00 00 00 00 00 Failed to find a valid event device, testing with event_sw0 device + ------------------------------------------------------- + + Test Suite Summary + Tests Total : 5 + Tests Skipped : 0 + Tests Executed : 0 + Tests Unsupported: 0 + Tests Passed : 0 + Tests Failed : 5 + ------------------------------------------------------- + Test Failed --=20 David Marchand