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 8317CA04F1; Mon, 9 Dec 2019 08:34:07 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 34C652C12; Mon, 9 Dec 2019 08:34:07 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 3C34623D for ; Mon, 9 Dec 2019 08:34:05 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Dec 2019 23:34:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,294,1571727600"; d="scan'208";a="387151320" Received: from dpdk-lihong-ub1604.sh.intel.com ([10.67.118.203]) by orsmga005.jf.intel.com with ESMTP; 08 Dec 2019 23:34:02 -0800 From: lihong To: dts@dpdk.org Cc: lihong Date: Mon, 9 Dec 2019 08:08:30 +0800 Message-Id: <1575850110-20942-1-git-send-email-lihongx.ma@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dts] [PATCH V1] framework/pmd_output: fix issue of start_testpmd 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" Signed-off-by: lihong --- framework/pmd_output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/pmd_output.py b/framework/pmd_output.py index 762f335..407b810 100644 --- a/framework/pmd_output.py +++ b/framework/pmd_output.py @@ -110,7 +110,7 @@ class PmdOutput(): :return: """ re_w_pci_str = '\s?-w\\s+.+?:.+?:.+?\\..+?[,.*=\d+]?\s|\s?-w\\s+.+?:.+?\\..+?[,.*=\d+]?\s' - re_file_prefix_str = '--file-prefix[=\s+].+\s' + re_file_prefix_str = '--file-prefix[\s*=]\S+\s' re_b_pci_str = '\s?-b\\s+.+?:.+?:.+?\\..+?[,.*=\d+]?\s|\s?-b\\s+.+?:.+?\\..+?[,.*=\d+]?\s' eal_param = eal_param + ' ' # pci_str_list eg: ['-w 0000:1a:00.0 ', '-w 0000:1a:00.1,queue-num-per-vf=4 ', '-w 0000:aa:bb.1,queue-num-per-vf=4 '] -- 2.7.4