[V1] tests/tests/TestSuite_flow_filtering:Modify the hard coded appparameter
Commit Message
Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>
---
tests/TestSuite_flow_filtering.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Comments
> Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>
Applied
@@ -58,7 +58,8 @@ class TestFlowFiltering(TestCase):
"""
Run before each test case.
"""
- cmd = self.dut.apps_name['flow_filtering'] + "-l 1 -n 1"
+ self.eal_para = self.dut.create_eal_parameters(cores=[1])
+ cmd = self.dut.apps_name['flow_filtering'] + self.eal_para
out = self.dut.send_command(cmd, timeout=15)
self.verify("Error" not in out, "flow launch failed")