From patchwork Fri Aug 25 15:28:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 130736 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 242C5430E2; Fri, 25 Aug 2023 09:19:57 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1E7ED43000; Fri, 25 Aug 2023 09:19:57 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 019F642D13 for ; Fri, 25 Aug 2023 09:19:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692947995; x=1724483995; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=svs2Ihq0TWOPt/WY4nyXQxLYUKxafo6RGqSYkfF/3hE=; b=IH2DNhytKsNPK/LLKb0ih+1oHVUmiK1Lu2DvHHtLdh96xaXm5RE/Jn8E DRPcG4vvOs9j7Jz9rsyfpKoX4RTbgZ1PbYB2jmoZsetLtkQSq5ulx7Bq/ SyaWdRL5Osejpg8RTwGIukvn1IGSLb9Md9ML02WHnvL9SMIiL1SOXuEoP v2RZ8h6bmFAj3ayvrgJo6dzZbhOhT90ekPuIVwtQUukZ+eLIGYJ+1eRlK /FfmAWY6e8iVVwrwCLvDyMX6bJqvZc99IwypUnyiXebi7P2jzx3wNwvp/ juZiz8WVk8XaPZ/nou+7SZJmoFpe0ENbqx1tRk2rSK257ocWikZwPROMr g==; X-IronPort-AV: E=McAfee;i="6600,9927,10812"; a="405654451" X-IronPort-AV: E=Sophos;i="6.02,195,1688454000"; d="scan'208";a="405654451" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Aug 2023 00:19:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10812"; a="802869632" X-IronPort-AV: E=Sophos;i="6.02,195,1688454000"; d="scan'208";a="802869632" Received: from unknown (HELO localhost.localdomain) ([10.239.252.96]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Aug 2023 00:19:53 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Subject: [dts] [PATCH V2 3/9] framework/config: obtain and save the acc and imc configurations of MEV Date: Fri, 25 Aug 2023 15:28:19 +0000 Message-Id: <20230825152825.2831565-4-songx.jiale@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230825152825.2831565-1-songx.jiale@intel.com> References: <20230825152825.2831565-1-songx.jiale@intel.com> MIME-Version: 1.0 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 save the acc and imc configurations of MEV in the crb dictionary. Signed-off-by: Jiale Song --- framework/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/framework/config.py b/framework/config.py index 2cd95ff2..f1b91ae5 100644 --- a/framework/config.py +++ b/framework/config.py @@ -294,6 +294,10 @@ class CrbsConf(UserConf): crb["pass"] = value elif key == "os": crb["OS"] = value + elif key == "dut_acc_ip": + crb["ACC IP"] = value + elif key == "dut_imc_ip": + crb["IMC IP"] = value elif key == "tester_ip": crb["tester IP"] = value elif key == "tester_passwd":