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 89C0BA052A; Fri, 25 Dec 2020 10:06:40 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DA4CEC9FA; Fri, 25 Dec 2020 10:06:37 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 6B8BEC9EE for ; Fri, 25 Dec 2020 10:06:36 +0100 (CET) IronPort-SDR: uxrbk6bGZyKvO6+iGCpJbSP92hIj9ahGfgjPCmbyg4utmrzsHkZpAv7FGVitPF7jrD/ylg8vRa ry5mjBqhE2Zg== X-IronPort-AV: E=McAfee;i="6000,8403,9845"; a="240294098" X-IronPort-AV: E=Sophos;i="5.78,447,1599548400"; d="scan'208";a="240294098" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Dec 2020 01:06:29 -0800 IronPort-SDR: ppKIgpYePNhGhBXTMGD0KE4hGlT4ledZt8VXmHC6M0BUfDdLG7s0a8ttaSCbD6n7OWbwLzvmzb zUXH25ti+/3w== X-IronPort-AV: E=Sophos;i="5.78,447,1599548400"; d="scan'208";a="345967359" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Dec 2020 01:06:26 -0800 From: Zhou Jun To: dts@dpdk.org Cc: Zhou Jun Date: Fri, 25 Dec 2020 17:08:48 +0800 Message-Id: <20201225090848.21860-1-junx.w.zhou@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_skeleton: Fix syntax errors 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" tests/TestSuite_skeleton: Fix syntax errors Signed-off-by: Zhou Jun --- tests/TestSuite_skeleton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_skeleton.py b/tests/TestSuite_skeleton.py index 7ddc90a0..c2563dc3 100644 --- a/tests/TestSuite_skeleton.py +++ b/tests/TestSuite_skeleton.py @@ -69,7 +69,7 @@ class TestSkeleton(TestCase): def test_skeleton(self): eal_para = self.dut.create_eal_parameters(cores='1S/2C/1T') - cmd = self.path + " -c %s -n %d " % eal_para + cmd = self.path + " %s " % eal_para self.dut.send_expect(cmd,"forwarding packets",60) time.sleep(5) -- 2.17.1