aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAshwin Sekhar T K <asekhar@marvell.com>2022-04-27 16:39:22 +0530
committerMatias Elo <matias.elo@nokia.com>2022-05-23 15:39:02 +0300
commite59bf3a1ee8413d20c5674776c326ad5d496c416 (patch)
treecab10cf2f4af3aaf5b0deb61375293dc86bcff50 /test
parentc9f7ec1cc8fde20823227bd347d8a7c14efa5030 (diff)
validation: pool: allow zero max user area size for external pools
External pool spec does not limit the max user area size to be non-zero. So remove the check for non-zero max user area size for external pools in pool_main test case. Signed-off-by: Ashwin Sekhar T K <asekhar@marvell.com> Reviewed-by: Matias Elo <matias.elo@nokia.com>
Diffstat (limited to 'test')
-rw-r--r--test/validation/api/pool/pool.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/validation/api/pool/pool.c b/test/validation/api/pool/pool.c
index 8dad89d81..f8d3164a7 100644
--- a/test/validation/api/pool/pool.c
+++ b/test/validation/api/pool/pool.c
@@ -1291,7 +1291,6 @@ static void test_packet_pool_ext_capa(void)
CU_ASSERT(capa.pkt.max_headroom_size > 0);
CU_ASSERT(capa.pkt.max_headroom_size >= capa.pkt.max_headroom);
CU_ASSERT(capa.pkt.max_segs_per_pkt > 0);
- CU_ASSERT(capa.pkt.max_uarea_size > 0);
}
static void test_packet_pool_ext_param_init(void)