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 DACA3A0508; Tue, 29 Mar 2022 11:32:45 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 89A3C41151; Tue, 29 Mar 2022 11:32:45 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id AED4640691 for ; Tue, 29 Mar 2022 11:32:43 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 9581120DECF5; Tue, 29 Mar 2022 02:32:42 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9581120DECF5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1648546362; bh=1IO7qTgWhzdWYwe3GMKIl6xIG4WPtCGN6KWP4FCaNGw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=sl0gpirXsqJ8AEiNdhkLSkQeL640aYUVZ8JpdoUTAou75Bix5UpW7Y975mpFjWNE1 fq3Md0tgSxAInvH2CPCgBssuonJl9kQaB/InYGGP1yTXSXALbawQaDAi347LyTnVN2 EqE0R68oY6WJHGI9EJf/m601w70hQa6zLnvSTXDg= Date: Tue, 29 Mar 2022 02:32:42 -0700 From: Tyler Retzlaff To: Thomas Monjalon Cc: dev@dpdk.org, dmitry.kozliuk@gmail.com, gakhil@marvell.com, roy.fan.zhang@intel.com, david.marchand@redhat.com Subject: Re: [PATCH 2/2] test: enable most driver tests on Windows Message-ID: <20220329093242.GA21442@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1648544551-21324-1-git-send-email-roretzla@linux.microsoft.com> <1648544551-21324-3-git-send-email-roretzla@linux.microsoft.com> <1921305.8hb0ThOEGa@thomas> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1921305.8hb0ThOEGa@thomas> 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 Tue, Mar 29, 2022 at 11:12:21AM +0200, Thomas Monjalon wrote: > 29/03/2022 11:02, Tyler Retzlaff: > > enable most of the driver tests to run on windows, most tests will be > > skipped since the drivers themselves are not available on windows. > [...] > > if not is_windows > > driver_test_names += [ > > - 'cryptodev_aesni_mb_autotest', > > - 'cryptodev_aesni_gcm_autotest', > > - 'cryptodev_cn9k_autotest', > > - 'cryptodev_cn10k_autotest', > > - 'cryptodev_dpaa_sec_autotest', > > - 'cryptodev_dpaa2_sec_autotest', > > - 'cryptodev_null_autotest', > > - 'cryptodev_openssl_autotest', > > 'cryptodev_openssl_asym_autotest', > > - 'cryptodev_qat_autotest', > > - 'cryptodev_sw_armv8_autotest', > > - 'cryptodev_sw_kasumi_autotest', > > - 'cryptodev_sw_mvsam_autotest', > > - 'cryptodev_sw_snow3g_autotest', > > - 'cryptodev_sw_zuc_autotest', > > - 'dmadev_autotest', > > 'eventdev_selftest_octeontx', > > 'eventdev_selftest_sw', > > - 'rawdev_autotest', > > ] > > Please could you mention the reason for keeping few tests > in the conditional list? i indicated in the cover for the series. * remaining driver tests require further investigation and will not be addressed in this series. i did not mention the dump tests but the same applies. or are you asking for the above to be stated in the commit message? > > Listing the remaining ones: > - cryptodev_openssl_asym_autotest > - eventdev_selftest_octeontx > - eventdev_selftest_sw > > There are also the dump tests: > - dump_struct_sizes > - dump_mempool > - dump_malloc_stats > - dump_devargs > - dump_log_types > - dump_ring > - dump_physmem > - dump_memzone > as above they will have to be investigated separately.