[V1] tests/TestSuite_short_live: Correct meson build omission error

Message ID 20201104080740.24143-1-junx.w.zhou@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/TestSuite_short_live: Correct meson build omission error |

Commit Message

Zhou, JunX W Nov. 4, 2020, 8:07 a.m. UTC
  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

Zhou, JunX W Nov. 4, 2020, 8:07 a.m. UTC | #1
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
  
Tu, Lijuan Nov. 11, 2020, 2:53 a.m. UTC | #2
> 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.
  

Patch

diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py
index 60a3d2e8..88fc3bf2 100644
--- a/tests/TestSuite_short_live.py
+++ b/tests/TestSuite_short_live.py
@@ -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 != []: