[V1] tests/vmdq: replace eal whitelist option

Message ID 20210927055421.3871573-1-weix.ling@intel.com (mailing list archive)
State Superseded
Headers
Series [V1] tests/vmdq: replace eal whitelist option |

Checks

Context Check Description
ci/Intel-suite-dts-test warning SKIPPED

Commit Message

Ling, WeiX Sept. 27, 2021, 5:54 a.m. UTC
  Replace eal whitelist option '-w'  with all '-a' option.

Signed-off-by: Wei Ling <weix.ling@intel.com>
---
 tests/TestSuite_vmdq.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/tests/TestSuite_vmdq.py b/tests/TestSuite_vmdq.py
index 6dae54a4..1a170f89 100644
--- a/tests/TestSuite_vmdq.py
+++ b/tests/TestSuite_vmdq.py
@@ -113,7 +113,7 @@  class TestVmdq(TestCase):
         port_mask = utils.create_mask(self.dut_ports)
         eal_param = ""
         for i in self.dut_ports:
-            eal_param += " -w %s" % self.dut.ports_info[i]['pci']
+            eal_param += " -a %s" % self.dut.ports_info[i]['pci']
         # Run the application
         self.dut.send_expect("./%s -c %s -n 4 %s -- -p %s --nb-pools %s --enable-rss" %
                              (self.app_vmdq_path, core_mask, eal_param, port_mask, str(npools)), "reading queues", 120)