From patchwork Fri Apr 22 16:48:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 110094 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 1B9FBA0093; Fri, 22 Apr 2022 10:23:04 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E672D4067B; Fri, 22 Apr 2022 10:23:03 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id B9B5340042 for ; Fri, 22 Apr 2022 10:23:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650615782; x=1682151782; h=from:to:cc:subject:date:message-id; bh=cknABsKcPyKEiW31+aYgd5m7Db5MBiDCxPdLRq4W3xw=; b=fOA4cbPAxHTQwHgquY+i6LevFMrLMteyxJOaKh+DhfxPJB8csGTJNf9w y+rJ00Fv1xH/YmrljnQ6Wklp+baYAn7iHo06NIWBsKDUoALDOUXkg+fgQ eE9HN7QfzZUAO/2bkrIyR5JZvnecgBvm7SHhZ5YeOIWnx8o01J9tpmdmL HkAyoIR4rZZaiHX7Dn2qcvmFC/APsM9fn9KlhGHQHMjmfPtbbx7Sv6nEI BAdfN/EV/YAY6Gzyb3JCG8lGOZ+qnlgvgF2OrHbNv6dvAPPZ/RbcO2BNb tRQ+Uh+Yr3b+IwA3Xi7tp59o2ZL8Qu0kaNwAP/5i/fqxfYs550HdocTh8 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="244543647" X-IronPort-AV: E=Sophos;i="5.90,281,1643702400"; d="scan'208";a="244543647" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Apr 2022 01:23:00 -0700 X-IronPort-AV: E=Sophos;i="5.90,281,1643702400"; d="scan'208";a="703457746" Received: from unknown (HELO localhost.localdomain) ([10.239.251.94]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Apr 2022 01:22:59 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Subject: [dts] [PATCH V1] tests/hello_world: fixed script Date: Fri, 22 Apr 2022 16:48:21 +0000 Message-Id: <20220422164821.31738-1-songx.jiale@intel.com> X-Mailer: git-send-email 2.17.1 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 parameter transmission error, modify incoming parameters. Signed-off-by: Jiale Song Tested-by: Zhimin Huang --- tests/TestSuite_hello_world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_hello_world.py b/tests/TestSuite_hello_world.py index 6e670f09..45037b4e 100644 --- a/tests/TestSuite_hello_world.py +++ b/tests/TestSuite_hello_world.py @@ -82,7 +82,7 @@ class TestHelloWorld(TestCase): # get the maximum logical core number cores = self.dut.get_core_list("all") - eal_para = self.dut.create_eal_parameters(cores) + eal_para = self.dut.create_eal_parameters(cores=cores) cmdline = "./%s %s " % (self.app_helloworld_path, eal_para) out = self.dut.send_expect(cmdline, "# ", 50)