Hi Akhil,
Did you get chance to look into this. Thanks and regards Ayuj Verma ________________________________ From: Ayuj Verma <ayve...@marvell.com> Sent: 01 April 2019 13:01:56 To: akhil.go...@nxp.com Cc: arkadiuszx.kusz...@intel.com; Shally Verma; Sunila Sahu; Kanaka Durga Kotamarthy; Arvind Desai; dev@dpdk.org; Ayuj Verma Subject: [PATCH v1] app/test: add check for tests skipped Add skipped counter to count for number of skipped testcases. Signed-off-by: Ayuj Verma <ayve...@marvell.com> Signed-off-by: Shally Verma <shal...@marvell.com> --- app/test/test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/test/test.c b/app/test/test.c index d646f51..1e0113b 100644 --- a/app/test/test.c +++ b/app/test/test.c @@ -237,6 +237,8 @@ succeeded++; else if (test_success == -ENOTSUP) unsupported++; + else if (test_success == TEST_SKIPPED) + skipped++; else failed++; } else if (test_success == -ENOTSUP) { -- 1.8.3.1