test suite reviews and discussions
 help / color / mirror / Atom feed
* Re: [dts] [PATCH V1] tests/TestSuite_short_live: Correct meson build omission error
  2020-11-04  8:07 [dts] [PATCH V1] tests/TestSuite_short_live: Correct meson build omission error Zhou Jun
@ 2020-11-04  8:07 ` Zhou, JunX W
  2020-11-11  2:53 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Zhou, JunX W @ 2020-11-04  8:07 UTC (permalink / raw)
  To: Zhou, JunX W, dts

[-- Attachment #1: Type: text/plain, Size: 318 bytes --]

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


[-- Attachment #2: TestShortLiveApp.log --]
[-- Type: application/octet-stream, Size: 2843 bytes --]

04/11/2020 07:43:40                            dts: 
TEST SUITE : TestShortLiveApp
04/11/2020 07:43:40                            dts: NIC :        fortville_spirit
04/11/2020 07:43:40             dut.10.240.183.141: 
04/11/2020 07:43:40                         tester: 
04/11/2020 07:43:40               TestShortLiveApp: Test Case test_start_up_time Begin
04/11/2020 07:43:40             dut.10.240.183.141: 
04/11/2020 07:43:40                         tester: 
04/11/2020 07:43:40             dut.10.240.183.141: echo quit | time ./x86_64-native-linuxapp-gcc/app/testpmd -c 0x3 -n 4 --no-pci -- -i
04/11/2020 07:43:40             dut.10.240.183.141: time: cannot run ./x86_64-native-linuxapp-gcc/app/testpmd: No such file or directory
Command exited with non-zero status 127
0.00user 0.00system 0:00.00elapsed 60%CPU (0avgtext+0avgdata 816maxresident)k
0inputs+0outputs (0major+24minor)pagefaults 0swaps
04/11/2020 07:44:34               TestShortLiveApp: Test Case test_start_up_time Result PASSED:
04/11/2020 07:44:34             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/11/2020 07:44:34                            dts: 
TEST SUITE ENDED: TestShortLiveApp
04/11/2020 07:45:35                            dts: 
TEST SUITE : TestShortLiveApp
04/11/2020 07:45:35                            dts: NIC :        fortville_spirit
04/11/2020 07:45:36             dut.10.240.183.141: 
04/11/2020 07:45:36                         tester: 
04/11/2020 07:45:36               TestShortLiveApp: Test Case test_start_up_time Begin
04/11/2020 07:45:36             dut.10.240.183.141: 
04/11/2020 07:45:36                         tester: 
04/11/2020 07:45:36             dut.10.240.183.141: echo quit | time ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -c 0x3 -n 4 --no-pci -- -i
04/11/2020 07:45:37             dut.10.240.183.141: EAL: Detected 88 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL: No legacy callbacks, legacy socket not created
testpmd: No probed ethernet devices
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=155456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
Done
testpmd> quit

Bye...
0.11user 0.69system 0:00.81elapsed 99%CPU (0avgtext+0avgdata 59448maxresident)k
0inputs+0outputs (0major+10744minor)pagefaults 0swaps
04/11/2020 07:47:15               TestShortLiveApp: Test Case test_start_up_time Result PASSED:
04/11/2020 07:47:15             dut.10.240.183.141: kill_all: called by dut and has no prefix list.
04/11/2020 07:47:17                            dts: 
TEST SUITE ENDED: TestShortLiveApp

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [dts] [PATCH V1] tests/TestSuite_short_live: Correct meson build omission error
@ 2020-11-04  8:07 Zhou Jun
  2020-11-04  8:07 ` Zhou, JunX W
  2020-11-11  2:53 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: Zhou Jun @ 2020-11-04  8:07 UTC (permalink / raw)
  To: dts; +Cc: Zhou Jun

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(-)

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 != []:
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V1] tests/TestSuite_short_live: Correct meson build omission error
  2020-11-04  8:07 [dts] [PATCH V1] tests/TestSuite_short_live: Correct meson build omission error Zhou Jun
  2020-11-04  8:07 ` Zhou, JunX W
@ 2020-11-11  2:53 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2020-11-11  2:53 UTC (permalink / raw)
  To: Zhou, JunX W, dts; +Cc: Zhou, JunX W

> 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.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-11  2:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-04  8:07 [dts] [PATCH V1] tests/TestSuite_short_live: Correct meson build omission error Zhou Jun
2020-11-04  8:07 ` Zhou, JunX W
2020-11-11  2:53 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).