[V1,4/5] tests/TestSuite_cvl_rss_configure:support meson build method

Message ID 20200911021928.8224-5-weix.xie@intel.com (mailing list archive)
State Accepted
Headers
Series support meson build method |

Commit Message

Xie, WeiX Sept. 11, 2020, 2:19 a.m. UTC
  Signed-off-by: Xie wei <weix.xie@intel.com>
---
 tests/TestSuite_cvl_rss_configure.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/tests/TestSuite_cvl_rss_configure.py b/tests/TestSuite_cvl_rss_configure.py
index c8ca6d5..65b4d57 100644
--- a/tests/TestSuite_cvl_rss_configure.py
+++ b/tests/TestSuite_cvl_rss_configure.py
@@ -202,7 +202,7 @@  class RSSConfigureTest(TestCase):
         #Prepare testpmd EAL and parameters 
         all_eal_param = self.dut.create_eal_parameters(ports=[self.pf_pci])
         print(all_eal_param)   #print eal parameters
-        command = "./%s/app/testpmd %s  -- -i %s" % (self.dut.target, all_eal_param, "--rxq=10 --txq=10" + line_option)
+        command = self.dut.apps_name['test-pmd'] + all_eal_param + " -- -i --rxq=10 --txq=10" + line_option
         return command
 
     def _rss_validate_pattern(self, test_vectors, command, rss_type, is_rss):