From patchwork Tue Mar 29 09:02:31 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 108992 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4984DA0506; Tue, 29 Mar 2022 11:02:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3D3D542880; Tue, 29 Mar 2022 11:02:38 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 25B8B4280E for ; Tue, 29 Mar 2022 11:02:36 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 1816E20DEE22; Tue, 29 Mar 2022 02:02:35 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1816E20DEE22 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1648544555; bh=6uEDet4Et0S1aoLEuN4l/7UsyY5ImFEZV1ucyOvCLrw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OmeDLgej1W9jAKNj9ZlJsjKwpS4ocepqV4ZuqUqFfGQyMq58EbKa8p/d0Zv8PFYaB p5KUc6W2SiPI8R0nOWj+G4EBAFFV7bshfF3QP1rKLwXis2Z8wW6hEW4pfkVeSXXyp4 ck1VtnrWRcyr5HRIhbMsxDmigfWDcbEDMHsQqUxs= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, dmitry.kozliuk@gmail.com, gakhil@marvell.com, roy.fan.zhang@intel.com, Tyler Retzlaff Subject: [PATCH 2/2] test: enable most driver tests on Windows Date: Tue, 29 Mar 2022 02:02:31 -0700 Message-Id: <1648544551-21324-3-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1648544551-21324-1-git-send-email-roretzla@linux.microsoft.com> References: <1648544551-21324-1-git-send-email-roretzla@linux.microsoft.com> 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 enable most of the driver tests to run on windows, most tests will be skipped since the drivers themselves are not available on windows. Signed-off-by: Tyler Retzlaff --- app/test/meson.build | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/app/test/meson.build b/app/test/meson.build index 5fc1dd1..aec986b 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -290,31 +290,32 @@ perf_test_names = [ 'thash_perf_autotest', ] -driver_test_names = [] +driver_test_names = [ + 'cryptodev_aesni_gcm_autotest', + 'cryptodev_aesni_mb_autotest', + 'cryptodev_cn10k_autotest', + 'cryptodev_cn9k_autotest', + 'cryptodev_dpaa2_sec_autotest', + 'cryptodev_dpaa_sec_autotest', + 'cryptodev_null_autotest', + 'cryptodev_openssl_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', + 'rawdev_autotest', +] dump_test_names = [] 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', ] dump_test_names += [