From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 11415A0C43; Fri, 24 Sep 2021 03:37:33 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 00C7741254; Fri, 24 Sep 2021 03:37:33 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 6966C40142 for ; Fri, 24 Sep 2021 03:37:29 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10116"; a="309536664" X-IronPort-AV: E=Sophos;i="5.85,318,1624345200"; d="scan'208";a="309536664" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2021 18:37:28 -0700 X-IronPort-AV: E=Sophos;i="5.85,318,1624345200"; d="scan'208";a="514344381" Received: from unknown (HELO dpdk-zhaohy-t.sh.intel.com) ([10.240.183.68]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2021 18:37:27 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Date: Fri, 24 Sep 2021 09:50:32 +0800 Message-Id: <1632448235-137550-2-git-send-email-songx.jiale@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1632448235-137550-1-git-send-email-songx.jiale@intel.com> References: <1632448235-137550-1-git-send-email-songx.jiale@intel.com> Subject: [dts] [PATCH V1 2/5] tests/port_control: replace eal whitelist 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" 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): -- 1.8.3.1