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 60337A0547; Fri, 28 May 2021 09:48:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2C4C140150; Fri, 28 May 2021 09:48:31 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 04B5040040 for ; Fri, 28 May 2021 09:48:29 +0200 (CEST) IronPort-SDR: bg3pw+1q/a8wdPL3ZhTwX+TKXx7ozpZOMonrea9yu1lPmThX7D5JvVC3BZ7Uvw0fWfkr3QBWJ0 CDeOsjTAkKDw== X-IronPort-AV: E=McAfee;i="6200,9189,9997"; a="266799651" X-IronPort-AV: E=Sophos;i="5.83,229,1616482800"; d="scan'208";a="266799651" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2021 00:48:27 -0700 IronPort-SDR: nekiPBfvkWoyPqvVK/tPqQbzoqdkZixJiTUqoeS+L8qtomurkUWiybfmkd+NoSAd8eA6EaAL9l Q6rMcEly0uvA== X-IronPort-AV: E=Sophos;i="5.83,229,1616482800"; d="scan'208";a="477839089" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2021 00:48:26 -0700 From: Yu Jiang To: dts@dpdk.org Cc: Yu Jiang Date: Fri, 28 May 2021 15:53:11 +0800 Message-Id: <20210528075312.23366-2-yux.jiang@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210528075312.23366-1-yux.jiang@intel.com> References: <20210528075312.23366-1-yux.jiang@intel.com> Subject: [dts] [PATCH V1 1/2] tests/virtio_unit_cryptodev_func: support vdev param X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" Based on dpdk commit 8bfdd8a7f0f1 ("test/crypto: refactor to use sub test suites"), unit test support vdev param. Signed-off-by: Yu Jiang --- tests/TestSuite_virtio_unit_cryptodev_func.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_virtio_unit_cryptodev_func.py b/tests/TestSuite_virtio_unit_cryptodev_func.py index 8d69d5b..bf96b62 100644 --- a/tests/TestSuite_virtio_unit_cryptodev_func.py +++ b/tests/TestSuite_virtio_unit_cryptodev_func.py @@ -158,7 +158,7 @@ class VirtioCryptodevUnitTest(TestCase): return vm, vm_dut def test_cryptodev_virtio_autotest(self): - eal_opt_str = cc.get_eal_opt_str(self, {"a":None, "vdev":None}) + eal_opt_str = cc.get_eal_opt_str(self, {"a":None, "vdev": "crypto_virtio"}) self.__run_unit_test("cryptodev_virtio_autotest", eal_opt_str) def __run_unit_test(self, testsuite, eal_opt_str='', timeout=600): -- 2.7.4