[PATCG,V1] tests/generic_flow_api: Amend the queue list to

Message ID 20210408101930.18682-1-yanx.xia@intel.com (mailing list archive)
State Superseded
Headers
Series [PATCG,V1] tests/generic_flow_api: Amend the queue list to |

Commit Message

Yan Xia April 8, 2021, 10:19 a.m. UTC
  origin: Collect the queue for flow rule validate & create and leave it for later validation
now: only collect flow rule create for later verification, the queue during validate does not need to be verified

Signed-off-by: Xia Yan <yanx.xia@intel.com>
---
 tests/TestSuite_generic_flow_api.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Peng, Yuan April 8, 2021, 10:33 a.m. UTC | #1
Acked-by Peng, Yuan <yuan.peng@intel.com>

-----Original Message-----
From: dts <dts-bounces@dpdk.org> On Behalf Of Xia Yan
Sent: Thursday, April 8, 2021 6:20 PM
To: dts@dpdk.org
Cc: Xia, YanX <yanx.xia@intel.com>
Subject: [dts] [PATCG V1] tests/generic_flow_api: Amend the queue list to
  
Tu, Lijuan April 12, 2021, 5:43 a.m. UTC | #2
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Peng, Yuan
> Sent: 2021年4月8日 18:33
> To: Xia, YanX <yanx.xia@intel.com>; dts@dpdk.org
> Cc: Xia, YanX <yanx.xia@intel.com>
> Subject: Re: [dts] [PATCG V1] tests/generic_flow_api: Amend the queue list to
> 
> Acked-by Peng, Yuan <yuan.peng@intel.com>
> 
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Xia Yan
> Sent: Thursday, April 8, 2021 6:20 PM
> To: dts@dpdk.org
> Cc: Xia, YanX <yanx.xia@intel.com>
> Subject: [dts] [PATCG V1] tests/generic_flow_api: Amend the queue list to

Applied
  

Patch

diff --git a/tests/TestSuite_generic_flow_api.py b/tests/TestSuite_generic_flow_api.py
index 6822f8ab..e8171589 100644
--- a/tests/TestSuite_generic_flow_api.py
+++ b/tests/TestSuite_generic_flow_api.py
@@ -241,11 +241,11 @@  class TestGeneric_flow_api(TestCase):
         for flow_action in basic_flow_actions:
             # generate the flow rule and corresponding packet.
             flow_process = self.generate_random_command(**flow_action)
-            expected_queue.append(flow_process['queue'])
             # caculate the rule number created.
             rule_created = self.flow_test_process(flow_process, flow_action)
             if rule_created:
                 rule_num += 1
+                expected_queue.append(flow_process['queue'])
                 extra_packet.append(flow_process['extrapacket'])
         # Configure a return value.
         extrapkt_rulenum = {'extrapacket': extra_packet, 'rulenum': rule_num, 'queue': expected_queue}