diff options
author | Tianyu Li <tianyu.li@arm.com> | 2022-04-22 11:22:55 +0800 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2022-05-24 18:01:43 +0000 |
commit | 26c39878ad8c2e5e673956327badcd6e419488db (patch) | |
tree | ac9ab8083d0732d9c3a3ecfe70fb2b80460879d9 /test/test_ipsec_spd_flow_cache_input.py | |
parent | 152a9b6165c640bd551447e87a68132709864b67 (diff) |
tests: fix ipsec sdp cases with parrallel job
Serveral IPSec SPD cases re-use the same test class name,
leads to test error when do parrallel test with TEST_JOBS=16,
change the test class names to unique values.
Type: fix
Fixes: 7cd35f5d688d9e3bddf66602655274dae944b086
Signed-off-by: Tianyu Li <tianyu.li@arm.com>
Change-Id: Ia5768654ddb6274531222761cc82b226d97325a9
Diffstat (limited to 'test/test_ipsec_spd_flow_cache_input.py')
-rw-r--r-- | test/test_ipsec_spd_flow_cache_input.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test_ipsec_spd_flow_cache_input.py b/test/test_ipsec_spd_flow_cache_input.py index 02ecb5625ce..e8c560211bc 100644 --- a/test/test_ipsec_spd_flow_cache_input.py +++ b/test/test_ipsec_spd_flow_cache_input.py @@ -150,7 +150,7 @@ class IPSec4SpdTestCaseDiscard(SpdFlowCacheInbound): self.verify_num_inbound_flow_cache_entries(1) -class IPSec4SpdTestCaseRemove(SpdFlowCacheInbound): +class IPSec4SpdTestCaseRemoveInbound(SpdFlowCacheInbound): """ IPSec/IPv4 inbound: Policy mode test case with flow cache \ (remove bypass)""" @@ -264,7 +264,7 @@ class IPSec4SpdTestCaseRemove(SpdFlowCacheInbound): self.verify_num_inbound_flow_cache_entries(1) -class IPSec4SpdTestCaseReadd(SpdFlowCacheInbound): +class IPSec4SpdTestCaseReaddInbound(SpdFlowCacheInbound): """ IPSec/IPv4 inbound: Policy mode test case with flow cache \ (add, remove, re-add bypass)""" @@ -418,7 +418,7 @@ class IPSec4SpdTestCaseReadd(SpdFlowCacheInbound): self.verify_num_inbound_flow_cache_entries(1) -class IPSec4SpdTestCaseMultiple(SpdFlowCacheInbound): +class IPSec4SpdTestCaseMultipleInbound(SpdFlowCacheInbound): """ IPSec/IPv4 inbound: Policy mode test case with flow cache \ (multiple interfaces, multiple rules)""" @@ -522,7 +522,7 @@ class IPSec4SpdTestCaseMultiple(SpdFlowCacheInbound): self.verify_num_inbound_flow_cache_entries(3) -class IPSec4SpdTestCaseOverwriteStale(SpdFlowCacheInbound): +class IPSec4SpdTestCaseOverwriteStaleInbound(SpdFlowCacheInbound): """ IPSec/IPv4 inbound: Policy mode test case with flow cache \ (overwrite stale entries)""" @@ -700,7 +700,7 @@ class IPSec4SpdTestCaseOverwriteStale(SpdFlowCacheInbound): self.verify_num_inbound_flow_cache_entries(3) -class IPSec4SpdTestCaseCollision(SpdFlowCacheInbound): +class IPSec4SpdTestCaseCollisionInbound(SpdFlowCacheInbound): """ IPSec/IPv4 inbound: Policy mode test case with flow cache \ (hash collision)""" |