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 CC75C4265E; Thu, 28 Sep 2023 11:26:58 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BA51540273; Thu, 28 Sep 2023 11:26:58 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id B0A0540150 for ; Thu, 28 Sep 2023 11:26:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695893216; x=1727429216; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=O0luttANzqQ2W0/35L7d2SQiVLN2eKSbicMQ1ehXP5w=; b=dts52X+jQcNdfnylldpDc3eDSlURKtAAUJNCm39XbLGDWZqseF+t8jik v8ZNB5cU269FIE57SVZTlxWMTFbKPWOHXhCM6nXamnoSK9bmB9VyvYKxn eeBeDGQnj8w3uZjqDcadesOcIgQGneiZo89wl1mYgJgJjIhqHDqsE9TJ2 sGejl55CGHvcXPIj7YpMIjpophaBtUC6Fyl69Mg8JU50bFvzFU1v9OZR9 8s6OGZjfHPC9ke7R+H7gFpiNRPSmkBvjQdn3AFDhYX7ai5BmlaXSk4hYp T7IDcjGIieEOYSXY/8bL0ZlKWxCGr4rfHMj4xrFkAHO42OzbvPCd2xqYS A==; X-IronPort-AV: E=McAfee;i="6600,9927,10846"; a="384818411" X-IronPort-AV: E=Sophos;i="6.03,183,1694761200"; d="scan'208";a="384818411" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Sep 2023 02:26:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10846"; a="726169577" X-IronPort-AV: E=Sophos;i="6.03,183,1694761200"; d="scan'208";a="726169577" Received: from silpixa00401385.ir.intel.com ([10.237.214.155]) by orsmga006.jf.intel.com with ESMTP; 28 Sep 2023 02:26:54 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , Akhil Goyal Subject: [PATCH] app/test: drop dependency on crypto scheduler driver Date: Thu, 28 Sep 2023 10:26:39 +0100 Message-Id: <20230928092639.162449-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 The cryptodev autotests make use of the crypto scheduler driver when it is available, but build fine without. We can therefore remove the hard dependency on that driver when building the crypto test files. Fixes: 50823f30f0c8 ("test: build using per-file dependencies") Reported-by: Akhil Goyal Signed-off-by: Bruce Richardson --- app/test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index 05bae9216d..29ddf18502 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -11,7 +11,7 @@ packet_burst_generator_deps = ['net'] sample_packet_forward_deps = ['net_ring', 'ethdev', 'bus_vdev'] virtual_pmd_deps = ['ethdev', 'net', 'bus_pci'] # test_cryptodev has material that other crypto tests need -test_cryptodev_deps = ['bus_vdev', 'net', 'cryptodev', 'crypto_scheduler', 'security'] +test_cryptodev_deps = ['bus_vdev', 'net', 'cryptodev', 'security'] source_file_deps = { # The C files providing functionality to other test cases -- 2.39.2