From patchwork Wed Oct 12 08:07:44 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 118032 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 37847A0547; Wed, 12 Oct 2022 10:12:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 345A942F71; Wed, 12 Oct 2022 10:12:12 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 2378842E39 for ; Wed, 12 Oct 2022 10:12:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665562329; x=1697098329; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=xwXLtuVAHSLV6k62qbYOujq/WjeA3uWeoAZAXuQGIFQ=; b=Z4fpxiI1b8awENGHxD5KEJK7aUDYyl4WWCRm/l1BHUxBjyCVfB8kECdF xKY4c103ucJ1Sw+FWZgGHzGXTwx2vnjT15ijUFKQtGOmRY7891+VWNWhN Kuq15TrL7eZgsSFxIP/w8IVP8EBDkC0zdOqygJ8UKouTx72spcvdtKGqc ogbR/aMvovQYB+F0r9hs+gJnWV++3JrG2gGV3/DhqeHh4j5VJsgqZLpBG SUOKYCliMB7Yn/Mm4zn8yjvHAGRnm30JaBwk9iEoUJB4WWLbeKWk3fV+T qT0p+RUvK44Vfu7f2UARJZKUwC7y7MGm3eWSG8B5TzBEUDDx6LQyJlPNl g==; X-IronPort-AV: E=McAfee;i="6500,9779,10497"; a="368900203" X-IronPort-AV: E=Sophos;i="5.95,178,1661842800"; d="scan'208";a="368900203" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2022 01:12:08 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10497"; a="801762335" X-IronPort-AV: E=Sophos;i="5.95,178,1661842800"; d="scan'208";a="801762335" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2022 01:12:07 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1] tests/pvp_share_lib: fix parameter miss space in 2M hugepage testbed Date: Wed, 12 Oct 2022 04:07:44 -0400 Message-Id: <20221012080744.608588-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 Fix parameter miss space in 2M hugepage testbed. Signed-off-by: Wei Ling Acked-by: Xingguang He Signed-off-by: Wei Ling Tested-by: Dukai Yuan --- 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 d6d39f91..afead4c2 100644 --- a/tests/TestSuite_pvp_share_lib.py +++ b/tests/TestSuite_pvp_share_lib.py @@ -152,7 +152,7 @@ class TestPVPShareLib(TestCase): ) if self.check_2M_env: eal_param += " --single-file-segments" - eal_param += "-d librte_net_virtio.so -d librte_mempool_ring.so" + eal_param += " -d librte_net_virtio.so -d librte_mempool_ring.so" command_line_user = self.path + eal_param + " -- -i" self.virtio_user.send_expect(command_line_user, "testpmd> ", 120) self.virtio_user.send_expect("start", "testpmd> ", 120)