test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere
@ 2020-04-14 11:37 Xiao Qimai
  2020-04-16  8:05 ` Ma, LihongX
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Xiao Qimai @ 2020-04-14 11:37 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

*. case script enhancement

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_short_live.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py
index 50c4db1..dffe4af 100644
--- a/tests/TestSuite_short_live.py
+++ b/tests/TestSuite_short_live.py
@@ -102,7 +102,7 @@ class TestShortLiveApp(TestCase):
         if (txPort == rxPort):
             count = 2
 
-        filter_list = [{'layer': 'ether', 'config': {'type': 'not IPv6'}}]
+        filter_list = [{'layer': 'ether', 'config': {'type': 'not IPv6'}}, {'layer': 'userdefined', 'config': {'pcap-filter': 'not udp'}}]
         inst = self.tester.tcpdump_sniff_packets(rxitf, count=count,filters=filter_list)
 
         pktlen = pktSize - 14
@@ -124,7 +124,9 @@ class TestShortLiveApp(TestCase):
         delay = 0
         while delay < delay_max:
             process = self.dut.send_expect("lsof %s | wc -l" % process_file, "#")
-            if process != '0':
+            # as FUSE filesystem may not be accessible for root, so the output might include some warning info
+            res = process.splitlines()[-1]
+            if res != '0':
                 time.sleep(1)
                 delay = delay + 1
             else:
-- 
1.8.3.1


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

* Re: [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere
  2020-04-14 11:37 [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere Xiao Qimai
@ 2020-04-16  8:05 ` Ma, LihongX
  2020-04-17  3:15 ` Zhao, XinfengX
  2020-04-17  6:40 ` Zhao, XinfengX
  2 siblings, 0 replies; 4+ messages in thread
From: Ma, LihongX @ 2020-04-16  8:05 UTC (permalink / raw)
  To: dts; +Cc: Xiao, QimaiX

Tested-by: ma,lihong<lihongx.ma@intel.com>

Regards,
Ma,lihong


-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiao Qimai
Sent: Tuesday, April 14, 2020 7:38 PM
To: dts@dpdk.org
Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
Subject: [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere

*. case script enhancement

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_short_live.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py index 50c4db1..dffe4af 100644
--- a/tests/TestSuite_short_live.py
+++ b/tests/TestSuite_short_live.py
@@ -102,7 +102,7 @@ class TestShortLiveApp(TestCase):
         if (txPort == rxPort):
             count = 2
 
-        filter_list = [{'layer': 'ether', 'config': {'type': 'not IPv6'}}]
+        filter_list = [{'layer': 'ether', 'config': {'type': 'not 
+ IPv6'}}, {'layer': 'userdefined', 'config': {'pcap-filter': 'not 
+ udp'}}]
         inst = self.tester.tcpdump_sniff_packets(rxitf, count=count,filters=filter_list)
 
         pktlen = pktSize - 14
@@ -124,7 +124,9 @@ class TestShortLiveApp(TestCase):
         delay = 0
         while delay < delay_max:
             process = self.dut.send_expect("lsof %s | wc -l" % process_file, "#")
-            if process != '0':
+            # as FUSE filesystem may not be accessible for root, so the output might include some warning info
+            res = process.splitlines()[-1]
+            if res != '0':
                 time.sleep(1)
                 delay = delay + 1
             else:
--
1.8.3.1


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

* Re: [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere
  2020-04-14 11:37 [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere Xiao Qimai
  2020-04-16  8:05 ` Ma, LihongX
@ 2020-04-17  3:15 ` Zhao, XinfengX
  2020-04-17  6:40 ` Zhao, XinfengX
  2 siblings, 0 replies; 4+ messages in thread
From: Zhao, XinfengX @ 2020-04-17  3:15 UTC (permalink / raw)
  To: dts; +Cc: Xiao, QimaiX

Tested-by:  Zhao, Xinfeng<xinfengx.zhao@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiao Qimai
Sent: Tuesday, April 14, 2020 7:38 PM
To: dts@dpdk.org
Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
Subject: [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere

*. case script enhancement

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_short_live.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py index 50c4db1..dffe4af 100644
--- a/tests/TestSuite_short_live.py
+++ b/tests/TestSuite_short_live.py
@@ -102,7 +102,7 @@ class TestShortLiveApp(TestCase):
         if (txPort == rxPort):
             count = 2
 
-        filter_list = [{'layer': 'ether', 'config': {'type': 'not IPv6'}}]
+        filter_list = [{'layer': 'ether', 'config': {'type': 'not 
+ IPv6'}}, {'layer': 'userdefined', 'config': {'pcap-filter': 'not 
+ udp'}}]
         inst = self.tester.tcpdump_sniff_packets(rxitf, count=count,filters=filter_list)
 
         pktlen = pktSize - 14
@@ -124,7 +124,9 @@ class TestShortLiveApp(TestCase):
         delay = 0
         while delay < delay_max:
             process = self.dut.send_expect("lsof %s | wc -l" % process_file, "#")
-            if process != '0':
+            # as FUSE filesystem may not be accessible for root, so the output might include some warning info
+            res = process.splitlines()[-1]
+            if res != '0':
                 time.sleep(1)
                 delay = delay + 1
             else:
--
1.8.3.1


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

* Re: [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere
  2020-04-14 11:37 [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere Xiao Qimai
  2020-04-16  8:05 ` Ma, LihongX
  2020-04-17  3:15 ` Zhao, XinfengX
@ 2020-04-17  6:40 ` Zhao, XinfengX
  2 siblings, 0 replies; 4+ messages in thread
From: Zhao, XinfengX @ 2020-04-17  6:40 UTC (permalink / raw)
  To: dts; +Cc: Xiao, QimaiX

Discard this patch

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiao Qimai
Sent: Tuesday, April 14, 2020 7:38 PM
To: dts@dpdk.org
Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
Subject: [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere

*. case script enhancement

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_short_live.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py index 50c4db1..dffe4af 100644
--- a/tests/TestSuite_short_live.py
+++ b/tests/TestSuite_short_live.py
@@ -102,7 +102,7 @@ class TestShortLiveApp(TestCase):
         if (txPort == rxPort):
             count = 2
 
-        filter_list = [{'layer': 'ether', 'config': {'type': 'not IPv6'}}]
+        filter_list = [{'layer': 'ether', 'config': {'type': 'not 
+ IPv6'}}, {'layer': 'userdefined', 'config': {'pcap-filter': 'not 
+ udp'}}]
         inst = self.tester.tcpdump_sniff_packets(rxitf, count=count,filters=filter_list)
 
         pktlen = pktSize - 14
@@ -124,7 +124,9 @@ class TestShortLiveApp(TestCase):
         delay = 0
         while delay < delay_max:
             process = self.dut.send_expect("lsof %s | wc -l" % process_file, "#")
-            if process != '0':
+            # as FUSE filesystem may not be accessible for root, so the output might include some warning info
+            res = process.splitlines()[-1]
+            if res != '0':
                 time.sleep(1)
                 delay = delay + 1
             else:
--
1.8.3.1


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

end of thread, other threads:[~2020-04-17  6:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-14 11:37 [dts] [PATCH V1]short_live: enhance script for misc packets and system interfere Xiao Qimai
2020-04-16  8:05 ` Ma, LihongX
2020-04-17  3:15 ` Zhao, XinfengX
2020-04-17  6:40 ` Zhao, XinfengX

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