* [dpdk-dev] [PATCH] test/mempool: fix false positive test result
@ 2019-11-04 10:06 Olivier Matz
2019-11-04 12:42 ` Andrew Rybchenko
0 siblings, 1 reply; 3+ messages in thread
From: Olivier Matz @ 2019-11-04 10:06 UTC (permalink / raw)
To: dev; +Cc: Andrew Rybchenko, Pallantla Poornima
The ret variable, initialized to -1, is changed to 0 during the test,
making the test successful in some cases where it should return a
failure.
Fix this by always using the GOTO_ERR() macro that sets the ret
variable before doing the goto.
Fixes: 923ceaeac140 ("test/mempool: add unit test cases")
Cc: Pallantla Poornima <pallantlax.poornima@intel.com>
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
app/test/test_mempool.c | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/app/test/test_mempool.c b/app/test/test_mempool.c
index 8b20886c8..c32a5d387 100644
--- a/app/test/test_mempool.c
+++ b/app/test/test_mempool.c
@@ -502,7 +502,7 @@ test_mempool(void)
if (mp_nocache == NULL) {
printf("cannot allocate mp_nocache mempool\n");
- goto err;
+ GOTO_ERR(ret, err);
}
/* create a mempool (with cache) */
@@ -515,7 +515,7 @@ test_mempool(void)
if (mp_cache == NULL) {
printf("cannot allocate mp_cache mempool\n");
- goto err;
+ GOTO_ERR(ret, err);
}
/* create an empty mempool */
@@ -571,15 +571,15 @@ test_mempool(void)
if (mp_stack == NULL) {
printf("cannot allocate mp_stack mempool\n");
- goto err;
+ GOTO_ERR(ret, err);
}
if (rte_mempool_set_ops_byname(mp_stack, "stack", NULL) < 0) {
printf("cannot set stack handler\n");
- goto err;
+ GOTO_ERR(ret, err);
}
if (rte_mempool_populate_default(mp_stack) < 0) {
printf("cannot populate mp_stack mempool\n");
- goto err;
+ GOTO_ERR(ret, err);
}
rte_mempool_obj_iter(mp_stack, my_obj_init, NULL);
@@ -593,23 +593,23 @@ test_mempool(void)
if (default_pool == NULL) {
printf("cannot allocate default mempool\n");
- goto err;
+ GOTO_ERR(ret, err);
}
if (rte_mempool_set_ops_byname(default_pool,
default_pool_ops, NULL) < 0) {
printf("cannot set %s handler\n", default_pool_ops);
- goto err;
+ GOTO_ERR(ret, err);
}
if (rte_mempool_populate_default(default_pool) < 0) {
printf("cannot populate %s mempool\n", default_pool_ops);
- goto err;
+ GOTO_ERR(ret, err);
}
rte_mempool_obj_iter(default_pool, my_obj_init, NULL);
/* retrieve the mempool from its name */
if (rte_mempool_lookup("test_nocache") != mp_nocache) {
printf("Cannot lookup mempool from its name\n");
- goto err;
+ GOTO_ERR(ret, err);
}
printf("Walk into mempools:\n");
@@ -619,36 +619,36 @@ test_mempool(void)
/* basic tests without cache */
if (test_mempool_basic(mp_nocache, 0) < 0)
- goto err;
+ GOTO_ERR(ret, err);
/* basic tests with cache */
if (test_mempool_basic(mp_cache, 0) < 0)
- goto err;
+ GOTO_ERR(ret, err);
/* basic tests with user-owned cache */
if (test_mempool_basic(mp_nocache, 1) < 0)
- goto err;
+ GOTO_ERR(ret, err);
/* more basic tests without cache */
if (test_mempool_basic_ex(mp_nocache) < 0)
- goto err;
+ GOTO_ERR(ret, err);
/* mempool operation test based on single producer and single comsumer */
if (test_mempool_sp_sc() < 0)
- goto err;
+ GOTO_ERR(ret, err);
if (test_mempool_creation_with_exceeded_cache_size() < 0)
- goto err;
+ GOTO_ERR(ret, err);
if (test_mempool_same_name_twice_creation() < 0)
- goto err;
+ GOTO_ERR(ret, err);
/* test the stack handler */
if (test_mempool_basic(mp_stack, 1) < 0)
- goto err;
+ GOTO_ERR(ret, err);
if (test_mempool_basic(default_pool, 1) < 0)
- goto err;
+ GOTO_ERR(ret, err);
rte_mempool_list_dump(stdout);
--
2.20.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] test/mempool: fix false positive test result
2019-11-04 10:06 [dpdk-dev] [PATCH] test/mempool: fix false positive test result Olivier Matz
@ 2019-11-04 12:42 ` Andrew Rybchenko
2019-11-06 10:44 ` Thomas Monjalon
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Rybchenko @ 2019-11-04 12:42 UTC (permalink / raw)
To: Olivier Matz, dev; +Cc: Pallantla Poornima
On 11/4/19 1:06 PM, Olivier Matz wrote:
> The ret variable, initialized to -1, is changed to 0 during the test,
> making the test successful in some cases where it should return a
> failure.
>
> Fix this by always using the GOTO_ERR() macro that sets the ret
> variable before doing the goto.
>
> Fixes: 923ceaeac140 ("test/mempool: add unit test cases")
> Cc: Pallantla Poornima <pallantlax.poornima@intel.com>
>
> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] test/mempool: fix false positive test result
2019-11-04 12:42 ` Andrew Rybchenko
@ 2019-11-06 10:44 ` Thomas Monjalon
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2019-11-06 10:44 UTC (permalink / raw)
To: Olivier Matz; +Cc: dev, Andrew Rybchenko, Pallantla Poornima
04/11/2019 13:42, Andrew Rybchenko:
> On 11/4/19 1:06 PM, Olivier Matz wrote:
> > The ret variable, initialized to -1, is changed to 0 during the test,
> > making the test successful in some cases where it should return a
> > failure.
> >
> > Fix this by always using the GOTO_ERR() macro that sets the ret
> > variable before doing the goto.
> >
> > Fixes: 923ceaeac140 ("test/mempool: add unit test cases")
> > Cc: Pallantla Poornima <pallantlax.poornima@intel.com>
> >
> > Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
>
> Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
Applied, thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-11-06 10:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-04 10:06 [dpdk-dev] [PATCH] test/mempool: fix false positive test result Olivier Matz
2019-11-04 12:42 ` Andrew Rybchenko
2019-11-06 10:44 ` Thomas Monjalon
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).