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 53269A0350; Mon, 11 May 2020 08:15:03 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4B12E1C438; Mon, 11 May 2020 08:15:03 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 8D2511C438 for ; Mon, 11 May 2020 08:15:01 +0200 (CEST) IronPort-SDR: e5NSNKMPIfg4f5a5SQtlAZw9tVf2k/Euj1ibK1fbMRybEe8h858dAKhDA8kYiw0fw+/zEqnXuA MIM853JDhqPA== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 May 2020 23:15:00 -0700 IronPort-SDR: 2KvZ/6NFGRNa/l3tvm+bV8bqSiIW0qTzb5EhFA6nI7Qqrfud+eLTpDfItAETNGuL0jCDlOzmam vB2SHHI5X/xg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,378,1583222400"; d="scan'208";a="296843314" Received: from unknown (HELO xqm-virtio_tester.sh.intel.com) ([10.240.183.52]) by fmsmga002.fm.intel.com with ESMTP; 10 May 2020 23:14:59 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Mon, 11 May 2020 14:06:59 +0800 Message-Id: <1589177219-123025-1-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1]framework/dts: fix multi_sections in execution.cfg sharing same dut issue 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" *. fix dut of second section in execution.cfg can't compile dpdk Signed-off-by: Xiao Qimai --- framework/dts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/dts.py b/framework/dts.py index a637209..d6c4fe5 100644 --- a/framework/dts.py +++ b/framework/dts.py @@ -557,12 +557,12 @@ def run_all(config_file, pkgName, git, patch, skip_setup, stats_report = StatsReporter(output_dir + '/statistics.txt') result = Result() - crbInsts = [] crbs_conf = CrbsConf() crbs = crbs_conf.load_crbs_config() # for all Execution sections for section in config.sections(): + crbInsts = list() dts_parse_param(config, section) # verify if the delimiter is good if the lists are vertical -- 1.8.3.1