From patchwork Wed Jul 29 16:39:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lu, Nannan" X-Patchwork-Id: 74974 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id AC80FA052B; Wed, 29 Jul 2020 09:47:56 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9FA9537B7; Wed, 29 Jul 2020 09:47:56 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id B4439F04 for ; Wed, 29 Jul 2020 09:47:55 +0200 (CEST) IronPort-SDR: vNAz5OEiHvoJKCV82awIp5iV2Xvv/3YyW1vYlP69hLUV5HoA3IsloFB70IC3fLOgYRfMCr3fXi tsS/ShPOrxSQ== X-IronPort-AV: E=McAfee;i="6000,8403,9696"; a="139390421" X-IronPort-AV: E=Sophos;i="5.75,409,1589266800"; d="scan'208";a="139390421" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Jul 2020 00:47:54 -0700 IronPort-SDR: q9dSvIW6dBpqvNrxfJXvmaN39Rv+7mpZPqIXQzLKVyCh61dwsU58m68JaUZGBzzs9uCbJ3R2iM jCijDUcdo13w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,409,1589266800"; d="scan'208";a="490205784" Received: from dpdk-lunannan.sh.intel.com ([10.67.111.68]) by fmsmga006.fm.intel.com with ESMTP; 29 Jul 2020 00:47:50 -0700 From: Nannan Lu To: dts@dpdk.org Cc: Nannan Lu Date: Wed, 29 Jul 2020 16:39:43 +0000 Message-Id: <1596040783-1659484-1-git-send-email-nannan.lu@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dts] [PATCH V1] tests/rte_flow_common.py: add iavf_driver_file_location X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 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" Add iavf_driver_file_location, as it is used in the Max vf test case of cvl dcf switch filter test plan. Signed-off-by: Nannan Lu --- tests/rte_flow_common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/rte_flow_common.py b/tests/rte_flow_common.py index 3d46e5e..5728af0 100644 --- a/tests/rte_flow_common.py +++ b/tests/rte_flow_common.py @@ -45,6 +45,9 @@ def get_suite_config(test_case): if "ice_driver_file_location" in test_case.get_suite_cfg(): ice_driver_file_location = test_case.get_suite_cfg()["ice_driver_file_location"] suite_config["ice_driver_file_location"] = ice_driver_file_location + if "iavf_driver_file_location" in test_case.get_suite_cfg(): + iavf_driver_file_location = test_case.get_suite_cfg()["iavf_driver_file_location"] + suite_config["iavf_driver_file_location"] = iavf_driver_file_location if "os_default_package_file_location" in test_case.get_suite_cfg(): os_default_package_file_location = test_case.get_suite_cfg()["os_default_package_file_location"] suite_config["os_default_package_file_location"] = os_default_package_file_location