From 50882a1ec02173f4ef30facb5c7c18a60ef65472 Mon Sep 17 00:00:00 2001 From: David Christensen Date: Wed, 8 May 2019 16:02:19 -0500 Subject: [PATCH] test/barrier: fix allocation check Code tested calloc failures for pt & lpt variables but not for the sum variable. Add a test for calloc failure of sum. Fixes: 93da5b59afc9 ("test: introduce memory barrier test case") Cc: stable@dpdk.org Signed-off-by: David Christensen Acked-by: Konstantin Ananyev --- app/test/test_barrier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_barrier.c b/app/test/test_barrier.c index c219d56020..ae37b1e5c2 100644 --- a/app/test/test_barrier.c +++ b/app/test/test_barrier.c @@ -202,7 +202,7 @@ plock_test(uint32_t iter, enum plock_use_type utype) printf("%s(iter=%u, utype=%u) started on %u lcores\n", __func__, iter, utype, n); - if (pt == NULL || lpt == NULL) { + if (pt == NULL || lpt == NULL || sum == NULL) { printf("%s: failed to allocate memory for %u lcores\n", __func__, n); free(pt); -- 2.20.1