From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CA992A0C55; Wed, 1 Dec 2021 01:30:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B2E0D410F7; Wed, 1 Dec 2021 01:30:28 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 901A540E78 for ; Wed, 1 Dec 2021 01:30:27 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1061) id ED06720E0BFA; Tue, 30 Nov 2021 16:30:26 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com ED06720E0BFA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1638318626; bh=Vzfr9FssS3vxFiaLpecAsLmDWLbArQW+HF1hn9r0vUg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pXrQbwR6nHN5wphqYkZpzpsIvZG9VXdruw8dJgzqwWnRrUOwEXwDwYicMvKWpnb2D GP93dawZeDChGO2Nk+kzqiciirfY93xVlUp61xs+qJizSwPcQDjXNb7rLgOrmWt0RU 6x8gIVvAmqatJRTaubbDzSwPmpn7aU+PWDQZHMZE= Date: Tue, 30 Nov 2021 16:30:26 -0800 From: Jie Zhou To: Dmitry Kozlyuk Cc: dev@dpdk.org, roretzla@microsoft.com, navasile@linux.microsoft.com, dmitrym@microsoft.com, pallavi.kadam@intel.com, talshn@nvidia.com, thomas@monjalon.net, aconole@redhat.com Subject: Re: [PATCH v8 06/11] app/test: temporarily "skip" one cmdline test case Message-ID: <20211201003026.GB14219@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1635215204-20604-1-git-send-email-jizh@linux.microsoft.com> <1635216361-23641-1-git-send-email-jizh@linux.microsoft.com> <1635216361-23641-7-git-send-email-jizh@linux.microsoft.com> <20211124010213.5595314c@sovereign> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211124010213.5595314c@sovereign> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Nov 24, 2021 at 01:02:13AM +0300, Dmitry Kozlyuk wrote: > 2021-10-25 19:45 (UTC-0700), Jie Zhou: > > cmdline tests pass except one failure at the test_cmdline_socket_fns > > test case with error: failed to open /dev/null for reading! > > Can't it be something like this? > > #ifndef RTE_EXEC_ENV_WINDOWS > #define NULL_INPUT "/dev/null" > #else > #define NULL_INPUT "NUL" > #endif Yes, it works. Thanks!