From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E8D55A0524; Fri, 6 Nov 2020 11:01:08 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CCB4E5B3A; Fri, 6 Nov 2020 11:01:07 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 66DF55A51 for ; Fri, 6 Nov 2020 11:01:05 +0100 (CET) IronPort-SDR: dx/VvijbqkyhSE7N09jbaR9TlKRUC6Fn4jP5C8JIR2Ezt6i7RM9e3d/Qwg4tksMS+V/2cGQV9y 8XSTrbjaU22A== X-IronPort-AV: E=McAfee;i="6000,8403,9796"; a="187447498" X-IronPort-AV: E=Sophos;i="5.77,456,1596524400"; d="scan'208";a="187447498" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Nov 2020 02:01:04 -0800 IronPort-SDR: M78ySg/QS9D35GEyBQTSu3TLRj4PiIsakecpVTvVMOwPwVeceZtQe4SQX4dyzewmOZJn0LSK2m SI1xRQFySxzg== X-IronPort-AV: E=Sophos;i="5.77,456,1596524400"; d="scan'208";a="306814917" Received: from unknown (HELO localhost.localdomain) ([10.240.183.57]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Nov 2020 02:01:02 -0800 From: Haiyang Zhao To: dts@dpdk.org, Lijuan.Tu@intel.com Cc: Haiyang Zhao Date: Fri, 6 Nov 2020 17:55:34 +0800 Message-Id: <20201106095535.5650-2-haiyangx.zhao@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201106095535.5650-1-haiyangx.zhao@intel.com> References: <20201106095535.5650-1-haiyangx.zhao@intel.com> Subject: [dts] [PATCH V1 1/2] framework/pmd_output: add other eal param into config 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" *.save other eal param in config,so it can check if the eal param is duplicate in create_eal_parameter. Signed-off-by: Haiyang Zhao --- framework/pmd_output.py | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/pmd_output.py b/framework/pmd_output.py index 94a8f7c..6557f9c 100644 --- a/framework/pmd_output.py +++ b/framework/pmd_output.py @@ -162,6 +162,7 @@ class PmdOutput(): all_eal_param = self.dut.create_eal_parameters(fixed_prefix=fixed_prefix, socket=socket, **config) else: w_pci_list, port_options, b_pci_list, file_prefix, no_pci, other_eal_str = self.split_eal_param(eal_param) + config['other_eal_param'] = other_eal_str if no_pci: config['no_pci'] = no_pci if w_pci_list: -- 2.17.1