From patchwork Sun Oct 9 02:07:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 117712 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 6372AA0540; Sun, 9 Oct 2022 04:12:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3927C400D5; Sun, 9 Oct 2022 04:12:43 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 1CF5B40042 for ; Sun, 9 Oct 2022 04:12:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665281561; x=1696817561; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=fvGjj5/9f0woF6Tv3m3Qccy7R6HQka59qkUVRWW0OSQ=; b=NdqDHpADbLy6eEIosAdkk5D4dbXYPqycs/cFvbiDza1xiEVkp7azXBNv IvPXQAjR+6OaxG4jTnd52tCrwsvKlVEaPG7OZtcE+VaGz035sCXA8wqGe 71Q9PLCSojOjdzabwbi53g6+Hi8RKFKKkzas62MAbFxTe/9Wq6mesqFiX lya/0EHwwyoHAO3tG2PiGZaWlHWzs5kYobu9hYaeuIPyxqkAHrwrixI7r h2Cq9geDKejX7OM7ndb3WbfyY6axj7QaV2gSUjFFVtISL5hlQy0FXysyJ X3xBgQE0deAjJpLXQbBgSviVyIMxZzIlzJrUn7lXvjkZbfwgXoX4SkDnG Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10494"; a="284384022" X-IronPort-AV: E=Sophos;i="5.95,170,1661842800"; d="scan'208";a="284384022" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Oct 2022 19:12:39 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10494"; a="694240129" X-IronPort-AV: E=Sophos;i="5.95,170,1661842800"; d="scan'208";a="694240129" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Oct 2022 19:12:38 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1] tests/pvp_share_lib: add a space between 2 testpmd parameters Date: Sat, 8 Oct 2022 22:07:15 -0400 Message-Id: <20221009020715.2313050-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 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 Add a space between 2 testpmd parameters to fix code issue. Signed-off-by: Wei Ling --- tests/TestSuite_pvp_share_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_pvp_share_lib.py b/tests/TestSuite_pvp_share_lib.py index 87a88ea0..d6d39f91 100644 --- a/tests/TestSuite_pvp_share_lib.py +++ b/tests/TestSuite_pvp_share_lib.py @@ -130,7 +130,7 @@ class TestPVPShareLib(TestCase): ports=[self.pci_info], ) eal_param += ( - "-d librte_net_vhost.so -d librte_net_%s.so -d librte_mempool_ring.so --file-prefix=vhost" + " -d librte_net_vhost.so -d librte_net_%s.so -d librte_mempool_ring.so --file-prefix=vhost" % driver ) command_line_client = self.path + eal_param + " -- -i"