[V1] tests/TestSuite_short_live: Correct meson build omission error
Commit Message
Correct meson build omission error in case test_start_up_time
Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>
---
tests/TestSuite_short_live.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
Tested-by: Zhou, Jun <junx.w.zhou@intel.com>
-----Original Message-----
From: Zhou Jun [mailto:junx.w.zhou@intel.com]
Sent: Wednesday, November 4, 2020 4:08 PM
To: dts@dpdk.org
Cc: Zhou, JunX W <junx.w.zhou@intel.com>
Subject: [dts][PATCH V1] tests/TestSuite_short_live: Correct meson build omission error
> Correct meson build omission error in case test_start_up_time
>
> Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>
Applied with comments changed.
@@ -160,7 +160,7 @@ class TestShortLiveApp(TestCase):
"""
time = []
regex = re.compile(".* (\d+:\d{2}\.\d{2}).*")
- out = self.dut.send_expect("echo quit | time ./%s/app/testpmd -c 0x3 -n 4 --no-pci -- -i" % self.target, "#", 120)
+ out = self.dut.send_expect("echo quit | time ./%s -c 0x3 -n 4 --no-pci -- -i" % self.app_testpmd, "#", 120)
time = regex.findall(out)
if time != []: