From patchwork Fri Sep 24 02:57:36 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 99519 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 73BBCA0C45; Fri, 24 Sep 2021 04:44:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0BE57412AD; Fri, 24 Sep 2021 04:44:31 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 2D55940142 for ; Fri, 24 Sep 2021 04:44:30 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10116"; a="224016850" X-IronPort-AV: E=Sophos;i="5.85,318,1624345200"; d="scan'208";a="224016850" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2021 19:44:29 -0700 X-IronPort-AV: E=Sophos;i="5.85,318,1624345200"; d="scan'208";a="475827223" Received: from unknown (HELO dpdk-zhaohy-t.sh.intel.com) ([10.240.183.68]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2021 19:44:27 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Date: Fri, 24 Sep 2021 10:57:36 +0800 Message-Id: <1632452259-143959-2-git-send-email-songx.jiale@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1632452259-143959-1-git-send-email-songx.jiale@intel.com> References: <1632452259-143959-1-git-send-email-songx.jiale@intel.com> Subject: [dts] [PATCH V1 2/5] tests/port_control: replace eal allowlist option 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 Sender: "dts" because dpdk no longer supports the eal parameter '-w', replace eal '-w' option with '-a' Signed-off-by: Jiale Song --- tests/TestSuite_port_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 tests/TestSuite_port_control.py diff --git a/tests/TestSuite_port_control.py b/tests/TestSuite_port_control.py old mode 100644 new mode 100755 index e8d96f5..2d33273 --- a/tests/TestSuite_port_control.py +++ b/tests/TestSuite_port_control.py @@ -159,7 +159,7 @@ class TestPortControl(TestCase): terminal.send_expect("ip addr flush %s " % vf_if[1], "#") terminal.send_expect("./usertools/dpdk-devbind.py -b vfio-pci --force %s" % vf_pci[1], "#") app_name = terminal.apps_name['test-pmd'] - cmd = app_name + "-n 1 -w %s --vfio-intr=legacy -- -i" % vf_pci[1] + cmd = app_name + "-n 1 -a %s --vfio-intr=legacy -- -i" % vf_pci[1] terminal.send_expect(cmd, "testpmd>", 10) def start_testpmd(self, terminal):