From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 37DA230D for ; Tue, 1 Jul 2014 10:31:21 +0200 (CEST) Received: by mail-wg0-f50.google.com with SMTP id m15so9030169wgh.21 for ; Tue, 01 Jul 2014 01:31:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=WceKnHQq7pyx1T7t5ryaBha8A/Kzbv0/rK7a+YHz1Uc=; b=DQHT+CqUtBvdHof69qmVfVDgZiqtm/b5cQpw8jwcUc0FqULmfKpLxb65mrRT4eldxD gXuOQDHYgONj3JGTyNrtSNkkclX+GwwG2fgKdlnbEyHEL8KUwWNv5r+GRTKiUIpJfDKk 7/87hZ6yVowz92dwsptg5qVDR5zvgriW+nlxL+wyF8EVdpazT0UqOFqtIoItE0VUSq6O zR+ui1VrRhWkFunvg7yo5v+U4UNe3u9JS8+oWAbUAgNHPvxktL45J0ntbrllarJ718vY i+Z5cYlluifyuy5aWOLCJ5cWOL7+Ud/aIZZnk4YboBOGp97r9ZYDxs+F3QizTiGzhrm3 y60w== X-Gm-Message-State: ALoCoQlKDPAB4GhaNAfWSpnc3R3tsi0HXybzlqA0bFLV99T/Cm0IF4ljJOf6fXIARY1I2HqcoUlA X-Received: by 10.180.205.141 with SMTP id lg13mr22236656wic.21.1404203501006; Tue, 01 Jul 2014 01:31:41 -0700 (PDT) Received: from [10.16.0.195] (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id ha5sm40768062wib.4.2014.07.01.01.31.39 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 01 Jul 2014 01:31:40 -0700 (PDT) Message-ID: <53B271E1.1010304@6wind.com> Date: Tue, 01 Jul 2014 10:31:29 +0200 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Icedove/24.4.0 MIME-Version: 1.0 To: Pablo de Lara , dev@dpdk.org References: <1404139377-24580-1-git-send-email-pablox.de.lara.guarch@intel.com> In-Reply-To: <1404139377-24580-1-git-send-email-pablox.de.lara.guarch@intel.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] app/test: Removed vdev test in EAL flags unit test 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: Tue, 01 Jul 2014 08:31:21 -0000 Hi Pablo, On 06/30/2014 04:42 PM, Pablo de Lara wrote: > From: Pablo de Lara > > In whitelist test, within EAL flags unit test, vdev flag > was being tested, but test fails, as a secondary process > cannot allocate memzones, so it cannot create the device > and application exits. Also, this can be tested in ring > pmd test, which needs vdev and not in whitelist, which > should only test --pci-whitelist. > > Patch "app/test: fix build switches to enable cmdline tests" > from Thomas Monjalon is needed for this patch. > > Signed-off-by: Pablo de Lara If the test cannot success because it is started from a secondary process, do you think it is possible to do it with a primary process? I did a quick test and it works (see my patch in the same thread), but as I'm not really familiar with this part of the code, I may have forgotten something. Regards, Olivier